From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B9E9013827A for ; Thu, 26 May 2016 22:21:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35BE414235; Thu, 26 May 2016 22:21:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D075C14235 for ; Thu, 26 May 2016 22:21:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CCBF340A7D for ; Thu, 26 May 2016 22:21:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 319AEAA2 for ; Thu, 26 May 2016 22:21:12 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1464300952.03e2a51b850358c65eadf116dc1c707845e6f1db.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/otpcalc/otpcalc-0.97-r6.ebuild X-VCS-Directories: sys-auth/otpcalc/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 03e2a51b850358c65eadf116dc1c707845e6f1db X-VCS-Branch: master Date: Thu, 26 May 2016 22:21:12 +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-Archives-Salt: 3fc4ae16-953d-4057-b899-49c040954ebb X-Archives-Hash: 2c59e35de4a61520817b75757e8637b7 commit: 03e2a51b850358c65eadf116dc1c707845e6f1db Author: Ulrich Müller gentoo org> AuthorDate: Thu May 26 22:15:52 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu May 26 22:15:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e2a51b sys-auth/otpcalc: Remove old. Package-Manager: portage-2.3.0_rc1 sys-auth/otpcalc/otpcalc-0.97-r6.ebuild | 54 --------------------------------- 1 file changed, 54 deletions(-) diff --git a/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild deleted file mode 100644 index 7820ae8..0000000 --- a/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils toolchain-funcs - -DESCRIPTION="A One Time Password and S/Key calculator for X" -HOMEPAGE="http://killa.net/infosec/otpCalc/" -SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz" - -LICENSE="GPL-2+" # bundled crypto functions are not used -SLOT="0" -KEYWORDS="alpha amd64 ppc sparc x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - dev-libs/openssl" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/otpCalc-${PV}" - -src_prepare() { - epatch \ - "${FILESDIR}/${PN}-man-table-format.diff" \ - "${FILESDIR}/${P}-badindex.diff" \ - "${FILESDIR}/${PN}-crypto-proto.diff" \ - "${FILESDIR}/${P}-gtk2-gentoo.patch" \ - "${FILESDIR}/${P}-skey-md5.patch" \ - "${FILESDIR}/${P}-sha1-byteorder.patch" \ - "${FILESDIR}/${P}-gtk-deprecated.patch" - - # print correct version in manpage - sed -i -e "s/VERSION/${PV}/g" otpCalc.man || die - - # override hardcoded FLAGS - sed -i \ - -e 's:$(CC) $(CFLAGS) $^:$(CC) $(LDFLAGS) $(CFLAGS) $^:' \ - -e "s#-s -O3#${CFLAGS}#g" \ - Makefile.in || die - - tc-export CC -} - -src_install() { - dobin otpCalc - dosym otpCalc /usr/bin/otpcalc - newman otpCalc.man otpCalc.1 - newman - otpcalc.1 <<<".so man1/otpCalc.1" - domenu "${FILESDIR}/${PN}.desktop" - dodoc BUGS ChangeLog TODO -}