diff options
author | Ulrich Müller <ulm@gentoo.org> | 2013-01-23 20:29:15 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2013-01-23 20:29:15 +0000 |
commit | c3a634789e96126cd540b21e814204f913915311 (patch) | |
tree | 2323510d6b04a392a536212c39832e124525697d /sys-auth | |
parent | Don't use $FILESDIR in pkg_preinst() for binpkg support wrt #453726 by Fabio ... (diff) | |
download | gentoo-2-c3a634789e96126cd540b21e814204f913915311.tar.gz gentoo-2-c3a634789e96126cd540b21e814204f913915311.tar.bz2 gentoo-2-c3a634789e96126cd540b21e814204f913915311.zip |
Remove old.
(Portage version: 2.1.11.48/cvs/Linux x86_64, signed Manifest commit with key E7BE08CA7DC6EA25)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/otpcalc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-auth/otpcalc/otpcalc-0.97-r5.ebuild | 55 |
2 files changed, 4 insertions, 56 deletions
diff --git a/sys-auth/otpcalc/ChangeLog b/sys-auth/otpcalc/ChangeLog index b458c9e51ee9..8cc1dfd01352 100644 --- a/sys-auth/otpcalc/ChangeLog +++ b/sys-auth/otpcalc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-auth/otpcalc # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/ChangeLog,v 1.26 2013/01/22 17:32:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/ChangeLog,v 1.27 2013/01/23 20:29:15 ulm Exp $ + + 23 Jan 2013; Ulrich Müller <ulm@gentoo.org> -otpcalc-0.97-r5.ebuild: + Remove old. 22 Jan 2013; Agostino Sarubbo <ago@gentoo.org> otpcalc-0.97-r6.ebuild: Stable for x86, wrt bug #451934 diff --git a/sys-auth/otpcalc/otpcalc-0.97-r5.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r5.ebuild deleted file mode 100644 index 4a0b7382c277..000000000000 --- a/sys-auth/otpcalc/otpcalc-0.97-r5.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/otpcalc-0.97-r5.ebuild,v 1.8 2012/05/04 18:57:20 jdhore Exp $ - -EAPI=3 - -inherit eutils - -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" -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" - epatch "${FILESDIR}/${P}-badindex.diff" - epatch "${FILESDIR}/${PN}-crypto-proto.diff" - - # make it work with GTK+ 2 - epatch "${FILESDIR}/${P}-gtk2-gentoo.patch" - - # change default s/key hash to MD5 (same as sys-auth/skey) - epatch "${FILESDIR}/${P}-skey-md5.patch" - - # fix SHA1 byte-order issue for conformance with RFC 2289 - epatch "${FILESDIR}/${P}-sha1-byteorder.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 -} - -src_install() { - dobin otpCalc || die - dosym otpCalc /usr/bin/otpcalc || die - newman otpCalc.man otpCalc.1 || die - domenu "${FILESDIR}/${PN}.desktop" || die - dodoc BUGS ChangeLog TODO || die -} |