commit:     a05299dd81c8b959f5590e975e8f1c170e84b6b8
Author:     Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sun Oct 28 18:13:17 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 23:14:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05299dd

dev-libs/nmeap: bump to EAPI=7.

Also updated metadata.xml and fixed a compiler warning.

Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10279
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 .../files/nmeap-0.3-fix-unitialized-variable.patch | 11 ++++
 dev-libs/nmeap/metadata.xml                        |  7 +--
 dev-libs/nmeap/nmeap-0.3-r1.ebuild                 | 60 ++++++++++++++++++++++
 3 files changed, 75 insertions(+), 3 deletions(-)

diff --git a/dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch 
b/dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch
new file mode 100644
index 00000000000..46dcbea6407
--- /dev/null
+++ b/dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch
@@ -0,0 +1,11 @@
+--- a/src/nmeap01.c    2005-05-06 20:29:41.000000000 +0200
++++ b/src/nmeap01.c    2018-10-28 19:10:49.000000000 +0100
+@@ -282,7 +282,7 @@
+  */
+ int nmeap_process(nmeap_context_t *context)
+ {
+-    int id;
++    int id = 0;
+     int i;
+     nmeap_sentence_t *s;
+       

diff --git a/dev-libs/nmeap/metadata.xml b/dev-libs/nmeap/metadata.xml
index 10629cc31d6..8a6d20835c5 100644
--- a/dev-libs/nmeap/metadata.xml
+++ b/dev-libs/nmeap/metadata.xml
@@ -9,12 +9,13 @@
                <email>proxy-ma...@gentoo.org</email>
                <name>Proxy Maintainers</name>
        </maintainer>
-       <upstream>
-               <remote-id type="sourceforge">nmeap</remote-id>
-       </upstream>
        <longdescription>
                Extensible NMEA-0183 (GPS) data parser in standard C.
                A directly linkable library intended for applications
                that want to embed GPS support, like app-misc/lcd4linux.
        </longdescription>
+       <upstream>
+               <bugs-to>https://sourceforge.net/p/nmeap/bugs/</bugs-to>
+               <remote-id type="sourceforge">nmeap</remote-id>
+       </upstream>
 </pkgmetadata>

diff --git a/dev-libs/nmeap/nmeap-0.3-r1.ebuild 
b/dev-libs/nmeap/nmeap-0.3-r1.ebuild
new file mode 100644
index 00000000000..61aa260e3f1
--- /dev/null
+++ b/dev-libs/nmeap/nmeap-0.3-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit toolchain-funcs
+
+DESCRIPTION="Extensible NMEA-0183 (GPS) data parser in standard C"
+HOMEPAGE="http://nmeap.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc"
+
+DEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=( "${FILESDIR}/${P}-fix-unitialized-variable.patch" )
+
+src_prepare() {
+       default
+
+       # Repsect users CFLAGS for the static lib archive
+       sed -i -e 's/CFLAGS =/CFLAGS +=/' -e 's/-g -O0 -Werror//' src/Makefile 
|| die
+
+       # Don't build test programs, as they are not needed
+       sed -i -e '/TST/d' Makefile || die
+
+       # Silent output of Doxygen and update it, since it is quite old
+       if use doc; then
+               sed -i -e 's/QUIET.*/QUIET = YES/' Doxyfile || die
+               doxygen -u Doxyfile 2>/dev/null || die
+       fi
+}
+
+src_compile() {
+       local myemakeopts=(
+               AR="$(tc-getAR)"
+               CC="$(tc-getCC)"
+       )
+
+       emake "${myemakeopts[@]}"
+
+       if use doc; then
+               doxygen Doxyfile || die
+       fi
+}
+
+src_install() {
+       dolib.a lib/libnmeap.a
+
+       doheader inc/nmeap.h inc/nmeap_def.h
+
+       if use doc; then
+               local HTML_DOCS=( "doc/tutorial.html" "doc/html" )
+       fi
+
+       einstalldocs
+}

Reply via email to