diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-03-23 12:08:33 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-03-23 12:08:33 +0000 |
commit | 893a7c8b7a38caa875879d7b50d9a7613d3a5cbb (patch) | |
tree | c03b13379f50150a21a582847c167f3d5544c6d6 /sys-auth/otpcalc | |
parent | Fix kde-minimal to be slot. (diff) | |
download | gentoo-2-893a7c8b7a38caa875879d7b50d9a7613d3a5cbb.tar.gz gentoo-2-893a7c8b7a38caa875879d7b50d9a7613d3a5cbb.tar.bz2 gentoo-2-893a7c8b7a38caa875879d7b50d9a7613d3a5cbb.zip |
Remove old.
(Portage version: 2.1.9.44/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth/otpcalc')
-rw-r--r-- | sys-auth/otpcalc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-auth/otpcalc/otpcalc-0.97-r4.ebuild | 65 |
2 files changed, 4 insertions, 66 deletions
diff --git a/sys-auth/otpcalc/ChangeLog b/sys-auth/otpcalc/ChangeLog index a0cad197c7e7..f2a497d65ec1 100644 --- a/sys-auth/otpcalc/ChangeLog +++ b/sys-auth/otpcalc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-auth/otpcalc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/ChangeLog,v 1.16 2011/03/23 08:45:09 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/ChangeLog,v 1.17 2011/03/23 12:08:33 ulm Exp $ + + 23 Mar 2011; Ulrich Mueller <ulm@gentoo.org> -otpcalc-0.97-r4.ebuild: + Remove old. 23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> otpcalc-0.97-r5.ebuild: ppc stable wrt #355881 diff --git a/sys-auth/otpcalc/otpcalc-0.97-r4.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r4.ebuild deleted file mode 100644 index d320ac1aae96..000000000000 --- a/sys-auth/otpcalc/otpcalc-0.97-r4.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/otpcalc/otpcalc-0.97-r4.ebuild,v 1.5 2010/07/12 20:39:36 ssuominen Exp $ - -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} - dev-util/pkgconfig" - -S="${WORKDIR}/otpCalc-${PV}" - -src_unpack() { - unpack ${A} - cd "${S}" - - 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 - newman otpCalc.man otpCalc.1 || die - dodoc BUGS ChangeLog TODO || die - - cat <<-EOF >"${T}"/${PN}.desktop - [Desktop Entry] - Type=Application - Version=1.0 - Name=otpCalc - Comment=One Time Password and S/Key calculator - Exec=otpCalc - Categories=Utility;GTK;Security; - EOF - domenu "${T}"/${PN}.desktop || die -} |