summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2002-12-20 23:37:01 +0000
committerJon Portnoy <avenj@gentoo.org>2002-12-20 23:37:01 +0000
commit45df88a945902073ab87fbc5c3b9dbb501dd7511 (patch)
treef313ac627d199f7e5c6ed611272bc43664a6186d /app-crypt
parentbugfix revision (diff)
downloadgentoo-2-45df88a945902073ab87fbc5c3b9dbb501dd7511.tar.gz
gentoo-2-45df88a945902073ab87fbc5c3b9dbb501dd7511.tar.bz2
gentoo-2-45df88a945902073ab87fbc5c3b9dbb501dd7511.zip
Initial import of rotix.
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/rotix/ChangeLog9
-rw-r--r--app-crypt/rotix/files/digest-rotix-0.831
-rw-r--r--app-crypt/rotix/rotix-0.83.ebuild30
3 files changed, 40 insertions, 0 deletions
diff --git a/app-crypt/rotix/ChangeLog b/app-crypt/rotix/ChangeLog
new file mode 100644
index 000000000000..78697add26b9
--- /dev/null
+++ b/app-crypt/rotix/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-crypt/rotix
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.1 2002/12/20 23:37:01 avenj Exp $
+
+*rotix-0.83.ebuild (20 Dec 2002)
+
+ 20 Dec 2002; Jon Portnoy <avenj@gentoo.org> rotix-0.83.ebuild :
+
+ Initial import into the tree.
diff --git a/app-crypt/rotix/files/digest-rotix-0.83 b/app-crypt/rotix/files/digest-rotix-0.83
new file mode 100644
index 000000000000..0fc4feb1ff3a
--- /dev/null
+++ b/app-crypt/rotix/files/digest-rotix-0.83
@@ -0,0 +1 @@
+MD5 1947a4a9e095bd0d1cfc1e7f5d506340 rotix-0.83.tar.bz2 14685
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
+}