From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8C443138334 for ; Sun, 21 Jul 2019 21:48:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACF4AE0844; Sun, 21 Jul 2019 21:48:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81A2EE0844 for ; Sun, 21 Jul 2019 21:48:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85EDE347D2A for ; Sun, 21 Jul 2019 21:48:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A37C6EA for ; Sun, 21 Jul 2019 21:48:06 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1563745573.9ee604e4e81767fe79224738ef7e1430f20f5b83.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nmeap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nmeap/nmeap-0.3.ebuild X-VCS-Directories: dev-libs/nmeap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9ee604e4e81767fe79224738ef7e1430f20f5b83 X-VCS-Branch: master Date: Sun, 21 Jul 2019 21:48:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 23f02748-9ffd-417b-8a2a-ec2b972c36eb X-Archives-Hash: 27c3c8b529c245e2c91505341d86f515 commit: 9ee604e4e81767fe79224738ef7e1430f20f5b83 Author: Conrad Kostecki kostecki com> AuthorDate: Sun Jul 21 19:31:21 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 21 21:46:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ee604e4 dev-libs/nmeap: drop old version Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Conrad Kostecki kostecki.com> Closes: https://github.com/gentoo/gentoo/pull/12502 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/nmeap/nmeap-0.3.ebuild | 58 ----------------------------------------- 1 file changed, 58 deletions(-) diff --git a/dev-libs/nmeap/nmeap-0.3.ebuild b/dev-libs/nmeap/nmeap-0.3.ebuild deleted file mode 100644 index 0a0e61c6988..00000000000 --- a/dev-libs/nmeap/nmeap-0.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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 )" - -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, 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 -}