blob: 46f414b5c4d6ffc7008936b46e6a11162162f973 (
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
25
26
27
28
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/outguess/outguess-0.2-r1.ebuild,v 1.2 2005/09/20 18:46:33 grobian Exp $
inherit eutils
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="~amd64 ~ppc ~ppc-macos ~x86"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gcc4.diff
}
src_install() {
dobin outguess || die "installation failed"
doman outguess.1
}
|