diff options
Diffstat (limited to 'app-forensics/galleta/galleta-20040505_p1.ebuild')
-rw-r--r-- | app-forensics/galleta/galleta-20040505_p1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-forensics/galleta/galleta-20040505_p1.ebuild b/app-forensics/galleta/galleta-20040505_p1.ebuild new file mode 100644 index 000000000000..12f76a54e94a --- /dev/null +++ b/app-forensics/galleta/galleta-20040505_p1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/galleta/galleta-20040505_p1.ebuild,v 1.1 2004/12/12 20:38:12 dragonheart Exp $ + +inherit toolchain-funcs + +MY_P=${PN}_${PV/_p/_} +DESCRIPTION="IE Cookie Parser" +HOMEPAGE="http://sourceforge.net/projects/odessa/" +SRC_URI="mirror://sourceforge/odessa/${MY_P}.tar.gz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86" +IUSE="" +DEPEND="virtual/libc" + +S=${WORKDIR}/${MY_P} + + +src_compile() { + cd src + $(tc-getCC) ${CFLAGS} -o galleta galleta.c -lm -lc || die "failed to compile" +} + +src_install() { + dodoc Readme.txt + dobin src/galleta +} |