blob: 5deeb22bc698f9c1a37844e4367f6c05c1315ee5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2004 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.2 2004/02/16 07:24:00 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"
}
|