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 | |
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')
-rw-r--r-- | app-crypt/outguess/ChangeLog | 10 | ||||
-rw-r--r-- | app-crypt/outguess/Manifest | 6 | ||||
-rw-r--r-- | app-crypt/outguess/files/digest-outguess-0.2 | 1 | ||||
-rw-r--r-- | app-crypt/outguess/metadata.xml | 11 | ||||
-rw-r--r-- | app-crypt/outguess/outguess-0.2.ebuild | 24 |
5 files changed, 49 insertions, 3 deletions
diff --git a/app-crypt/outguess/ChangeLog b/app-crypt/outguess/ChangeLog new file mode 100644 index 000000000000..1d2bd4afc549 --- /dev/null +++ b/app-crypt/outguess/ChangeLog @@ -0,0 +1,10 @@ +# 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/ChangeLog,v 1.1 2003/12/10 01:23:37 zhen Exp $ + +*outguess-0.2 (09 Dec 2003) + + 09 Dec 2003; zhen <zhen@gentoo.org> metadata.xml, outguess-0.2.ebuild: + initial import, thanks to Eric Harney <eharney@clemson.edu> for the ebuild via + bugzilla. + diff --git a/app-crypt/outguess/Manifest b/app-crypt/outguess/Manifest index 7b4a44615667..c9fad009e597 100644 --- a/app-crypt/outguess/Manifest +++ b/app-crypt/outguess/Manifest @@ -1,4 +1,4 @@ -MD5 3e8b911c1a7b082eb885d69bb6ba1b61 outguess-0.2.ebuild 751 -MD5 7dc22fe6e89ce90ef50258be1b94f5e9 ChangeLog 129 -MD5 432253ab8d0ca4019046fd5c2aad15ae metadata.xml 390 +MD5 d204fbe254550a0cae673e4ff3e1d801 outguess-0.2.ebuild 708 +MD5 c2e583fce6568b684730654822b497cf ChangeLog 414 +MD5 6ad490ad8dde149f1c06041ccfe73d71 metadata.xml 370 MD5 6b32639a3f1ae05e9ce4c132f1833129 files/digest-outguess-0.2 64 diff --git a/app-crypt/outguess/files/digest-outguess-0.2 b/app-crypt/outguess/files/digest-outguess-0.2 new file mode 100644 index 000000000000..7e7bc7dabdf5 --- /dev/null +++ b/app-crypt/outguess/files/digest-outguess-0.2 @@ -0,0 +1 @@ +MD5 321f23dc0badaba4350fa66b59829064 outguess-0.2.tar.gz 470638 diff --git a/app-crypt/outguess/metadata.xml b/app-crypt/outguess/metadata.xml new file mode 100644 index 000000000000..c271c0a6aa16 --- /dev/null +++ b/app-crypt/outguess/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>zhen@gentoo.org</email> + <name>John Davis</name> + <description>Full time maintainer</description> +</maintainer> + <longdescription>outguess is a flexible stenography tool</longdescription> +</pkgmetadata> 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" +} |