diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2004-12-26 00:41:54 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2004-12-26 00:41:54 +0000 |
commit | 41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b (patch) | |
tree | d79a404b9898bb6b98ee38d4a8d2d33acf93c78c /app-crypt/pgpdump/pgpdump-0.24.ebuild | |
parent | mark 0.12-r1 stable, delete outdated ebuilds (diff) | |
download | gentoo-2-41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b.tar.gz gentoo-2-41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b.tar.bz2 gentoo-2-41c1b8c23103fd5c2218a10b465cd2d6b7a76b8b.zip |
Version bumped.
Diffstat (limited to 'app-crypt/pgpdump/pgpdump-0.24.ebuild')
-rw-r--r-- | app-crypt/pgpdump/pgpdump-0.24.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
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 +} |