diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 21:04:18 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:55:26 +0100 |
commit | 29c7f59312a659e3523f89824d46fa5f524e3731 (patch) | |
tree | b944f450051fbe1f38829a8e6420db3d508c6337 /dev-libs/nmeap | |
parent | dev-libs/nmeap: update EAPI 7 -> 8 (diff) | |
download | gentoo-29c7f59312a659e3523f89824d46fa5f524e3731.tar.gz gentoo-29c7f59312a659e3523f89824d46fa5f524e3731.tar.bz2 gentoo-29c7f59312a659e3523f89824d46fa5f524e3731.zip |
dev-libs/nmeap: drop 0.3-r1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-libs/nmeap')
-rw-r--r-- | dev-libs/nmeap/nmeap-0.3-r1.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-libs/nmeap/nmeap-0.3-r1.ebuild b/dev-libs/nmeap/nmeap-0.3-r1.ebuild deleted file mode 100644 index 6a69fd4d389a..000000000000 --- a/dev-libs/nmeap/nmeap-0.3-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2021 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" - -BDEPEND="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 -} |