diff options
author | 2002-12-20 23:37:01 +0000 | |
---|---|---|
committer | 2002-12-20 23:37:01 +0000 | |
commit | 45df88a945902073ab87fbc5c3b9dbb501dd7511 (patch) | |
tree | f313ac627d199f7e5c6ed611272bc43664a6186d /app-crypt/rotix/rotix-0.83.ebuild | |
parent | bugfix revision (diff) | |
download | gentoo-2-45df88a945902073ab87fbc5c3b9dbb501dd7511.tar.gz gentoo-2-45df88a945902073ab87fbc5c3b9dbb501dd7511.tar.bz2 gentoo-2-45df88a945902073ab87fbc5c3b9dbb501dd7511.zip |
Initial import of rotix.
Diffstat (limited to 'app-crypt/rotix/rotix-0.83.ebuild')
-rw-r--r-- | app-crypt/rotix/rotix-0.83.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-crypt/rotix/rotix-0.83.ebuild b/app-crypt/rotix/rotix-0.83.ebuild new file mode 100644 index 000000000000..8386ab28cf7d --- /dev/null +++ b/app-crypt/rotix/rotix-0.83.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.1 2002/12/20 23:37:01 avenj Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Rotix allows you to generate rotational obfuscations." +HOMEPAGE="http://elektron.its.tudelft.nl/~hemmin98/rotix.html" +SRC_URI="http://elektron.its.tudelft.nl/~hemmin98/rotix_releases/${P}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="nls" + +RDEPEND="nls? ( sys-devel/gettext )" + +src_compile() { + local myconf + + use nls && myconf="--i18n=1" + + econf ${myconf} || die + + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} |