diff options
author | John P. Davis <zhen@gentoo.org> | 2003-12-10 01:23:42 +0000 |
---|---|---|
committer | John P. Davis <zhen@gentoo.org> | 2003-12-10 01:23:42 +0000 |
commit | 493cb45b5ca1bd24877aac3c724531d8f5a74e05 (patch) | |
tree | d0d87d49ce2c0aeb4a721c4f4de2f76ffd830f6f /app-crypt/outguess/outguess-0.2.ebuild | |
parent | initial import (diff) | |
download | gentoo-2-493cb45b5ca1bd24877aac3c724531d8f5a74e05.tar.gz gentoo-2-493cb45b5ca1bd24877aac3c724531d8f5a74e05.tar.bz2 gentoo-2-493cb45b5ca1bd24877aac3c724531d8f5a74e05.zip |
initial import
Diffstat (limited to 'app-crypt/outguess/outguess-0.2.ebuild')
-rw-r--r-- | app-crypt/outguess/outguess-0.2.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app-crypt/outguess/outguess-0.2.ebuild b/app-crypt/outguess/outguess-0.2.ebuild new file mode 100644 index 000000000000..7afb65eb4a3d --- /dev/null +++ b/app-crypt/outguess/outguess-0.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/outguess/outguess-0.2.ebuild,v 1.1 2003/12/10 01:23:37 zhen Exp $ + +DESCRIPTION="A universal tool for inserting steganographic information into other data." +HOMEPAGE="http://www.outguess.org/" +SRC_URI="http://packetstormsecurity.nl/crypt/stego/outguess-0.2.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc" + +S=${WORKDIR}/${PN} + +src_compile() { + econf || die "./configure failed" + emake || die "make failed" +} + +src_install() { + dobin outguess || die "installation failed" + doman outguess.1 || die "installation failed" +} |