diff options
author | Michael Palimaka <kensington@gentoo.org> | 2013-01-01 18:27:43 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2013-01-01 18:27:43 +0000 |
commit | 3fc9c9c28d43de19a2aa353b1f00e880dea3c0e9 (patch) | |
tree | a45a0d23dad422745454003f010e2e0a52e319fb /app-crypt | |
parent | masked dev-haskell/wash for removal (diff) | |
download | gentoo-2-3fc9c9c28d43de19a2aa353b1f00e880dea3c0e9.tar.gz gentoo-2-3fc9c9c28d43de19a2aa353b1f00e880dea3c0e9.tar.bz2 gentoo-2-3fc9c9c28d43de19a2aa353b1f00e880dea3c0e9.zip |
Remove old.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/keynote/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/keynote/files/keynote-2.3-make.patch | 36 | ||||
-rw-r--r-- | app-crypt/keynote/keynote-2.3-r2.ebuild | 51 |
3 files changed, 6 insertions, 89 deletions
diff --git a/app-crypt/keynote/ChangeLog b/app-crypt/keynote/ChangeLog index 9b3220218650..9c48e92ffbac 100644 --- a/app-crypt/keynote/ChangeLog +++ b/app-crypt/keynote/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/keynote -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.21 2012/12/31 23:22:22 jdhore Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.22 2013/01/01 18:27:43 kensington Exp $ + + 01 Jan 2013; Michael Palimaka <kensington@gentoo.org> + -files/keynote-2.3-make.patch, -keynote-2.3-r2.ebuild: + Remove old. 31 Dec 2012; Jeff Horelick <jdhore@gentoo.org> keynote-2.3-r3.ebuild: marked x86 per bug 448850 diff --git a/app-crypt/keynote/files/keynote-2.3-make.patch b/app-crypt/keynote/files/keynote-2.3-make.patch deleted file mode 100644 index 3b9d8a128841..000000000000 --- a/app-crypt/keynote/files/keynote-2.3-make.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- a/Makefile.in 2000-09-27 01:16:27.000000000 +0200 -+++ b/Makefile.in 2010-09-21 00:30:37.000000000 +0200 -@@ -35,6 +35,7 @@ - SED = @SED@ - ECHO = @ECHO@ - TR = @TR@ -+AR = @AR@ - - TARFLAGS = -cvzf ${DISTFILE} - YACCFLAGS2 = -d -p kv -b z -@@ -45,6 +46,7 @@ - RMFLAGS2 = -rf - RMFLAGS = -f - NROFFFLAGS = -mandoc -+LDFLAGS = @LDFLAGS@ - - SSLCONF = testsuite/openssl.cnf - SSLCERT = testsuite/test.cert.pem -@@ -83,7 +85,7 @@ - $(RANLIB) $(TARGET) - - $(TARGET2): $(TARGET) $(OBJS2) -- $(CC) $(CFLAGS) -o $(TARGET2) $(OBJS2) $(LIBS) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET2) $(OBJS2) $(LIBS) - - k.tab.c: keynote.y header.h keynote.h assertion.h config.h - $(YACC) $(YACCFLAGS) keynote.y -@@ -131,7 +133,7 @@ - -keyout $(SSLKEY) - - test-sample: all $(OBJS3) -- $(CC) $(CFLAGS) -o $(TARGET3) $(OBJS3) $(LIBS) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET3) $(OBJS3) $(LIBS) - - test-sig: all $(SSLCERT) $(SSLKEY) - $(SED) -e 's/--.*//' < $(SSLCERT) > $(SSLCERT).1 diff --git a/app-crypt/keynote/keynote-2.3-r2.ebuild b/app-crypt/keynote/keynote-2.3-r2.ebuild deleted file mode 100644 index 2fa88323f88b..000000000000 --- a/app-crypt/keynote/keynote-2.3-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3-r2.ebuild,v 1.4 2012/06/07 21:14:38 johu Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -DESCRIPTION="The KeyNote Trust-Management System" -HOMEPAGE="http://www1.cs.columbia.edu/~angelos/keynote.html" -SRC_URI="http://www1.cs.columbia.edu/~angelos/Code/${P}.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="ssl" - -RDEPEND="ssl? ( dev-libs/openssl )" -DEPEND="${RDEPEND} - virtual/yacc" - -src_prepare() { - cp -av Makefile.in{,.orig} || die - epatch "${FILESDIR}"/${P}-make.patch - epatch "${FILESDIR}"/$P-parallel-build.patch -} - -src_configure() { - tc-export AR CC RANLIB - econf -} - -src_compile() { - if use ssl; then - emake - else - emake nocrypto - fi -} - -src_install() { - dobin keynote - - dolib.a libkeynote.a - - insinto /usr/include - doins keynote.h - - doman man/keynote.[1345] - dodoc README HOWTO.add.crypto TODO -} |