summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2004-12-26 00:41:54 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2004-12-26 00:41:54 +0000
commit41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b (patch)
treed79a404b9898bb6b98ee38d4a8d2d33acf93c78c /app-crypt
parentmark 0.12-r1 stable, delete outdated ebuilds (diff)
downloadgentoo-2-41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b.tar.gz
gentoo-2-41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b.tar.bz2
gentoo-2-41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b.zip
Version bumped.
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/pgpdump/ChangeLog7
-rw-r--r--app-crypt/pgpdump/Manifest2
-rw-r--r--app-crypt/pgpdump/files/digest-pgpdump-0.241
-rw-r--r--app-crypt/pgpdump/pgpdump-0.24.ebuild30
4 files changed, 39 insertions, 1 deletions
diff --git a/app-crypt/pgpdump/ChangeLog b/app-crypt/pgpdump/ChangeLog
index 798767f11cc3..9f327daafa43 100644
--- a/app-crypt/pgpdump/ChangeLog
+++ b/app-crypt/pgpdump/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-crypt/pgpdump
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/pgpdump/ChangeLog,v 1.6 2004/10/05 15:21:52 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/pgpdump/ChangeLog,v 1.7 2004/12/26 00:41:54 matsuu Exp $
+
+*pgpdump-0.24 (26 Dec 2004)
+
+ 26 Dec 2004; MATSUU Takuto <matsuu@gentoo.org> +pgpdump-0.24.ebuild:
+ Version bumped.
06 Oct 2004; MATSUU Takuto <matsuu@gentoo.org> pgpdump-0.22.ebuild:
Set IUSE. Bugs #66410.
diff --git a/app-crypt/pgpdump/Manifest b/app-crypt/pgpdump/Manifest
index 8265c59bc081..b41607d8c4e5 100644
--- a/app-crypt/pgpdump/Manifest
+++ b/app-crypt/pgpdump/Manifest
@@ -1,4 +1,6 @@
MD5 5abc5a67064ffe84a4f916c7aae749d6 pgpdump-0.22.ebuild 699
+MD5 fffedfe5adfafbbc90f47dc748084d7c pgpdump-0.24.ebuild 703
MD5 c2a7736f20101306dfa5a5d3d5748f3a ChangeLog 978
MD5 e10a0da4fac2882942ffa8360ccdd921 metadata.xml 201
MD5 f744522117a4521aaf77a9c4b028f996 files/digest-pgpdump-0.22 63
+MD5 eb25ed69b971a313db1f9b3328c33c40 files/digest-pgpdump-0.24 63
diff --git a/app-crypt/pgpdump/files/digest-pgpdump-0.24 b/app-crypt/pgpdump/files/digest-pgpdump-0.24
new file mode 100644
index 000000000000..5b6a4f328741
--- /dev/null
+++ b/app-crypt/pgpdump/files/digest-pgpdump-0.24
@@ -0,0 +1 @@
+MD5 8df2968c7c66f6dfe469784fc05e36e8 pgpdump-0.24.tar.gz 54735
diff --git a/app-crypt/pgpdump/pgpdump-0.24.ebuild b/app-crypt/pgpdump/pgpdump-0.24.ebuild
new file mode 100644
index 000000000000..0f116960f813
--- /dev/null
+++ b/app-crypt/pgpdump/pgpdump-0.24.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/pgpdump/pgpdump-0.24.ebuild,v 1.1 2004/12/26 00:41:54 matsuu Exp $
+
+DESCRIPTION="A PGP packet visualizer"
+HOMEPAGE="http://pgp.iijlab.net/pgpdump.html"
+SRC_URI="ftp://pgp.iijlab.net/pub/pgp/tools/${P}.tar.gz"
+
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~amd64"
+IUSE=""
+
+DEPEND="virtual/libc
+ app-arch/bzip2"
+
+src_compile() {
+ econf || die
+ emake CFLAGS="${CFLAGS}" || die
+}
+
+src_install() {
+ dodir /usr/bin
+ dodir /usr/share/man/man1
+ make \
+ bindir=${D}/usr/bin \
+ mandir=${D}/usr/share/man/man1 \
+ install || die
+ dodoc CHANGES README
+}