diff options
author | Brandy Westcott <brandy@gentoo.org> | 2003-10-20 09:10:25 +0000 |
---|---|---|
committer | Brandy Westcott <brandy@gentoo.org> | 2003-10-20 09:10:25 +0000 |
commit | c9c8fe58ca6706f76e774a3fa61956577367c7da (patch) | |
tree | c7763c0f8405ea8b211d0e382305cbb81636ae29 /app-misc | |
parent | New version (diff) | |
download | historical-c9c8fe58ca6706f76e774a3fa61956577367c7da.tar.gz historical-c9c8fe58ca6706f76e774a3fa61956577367c7da.tar.bz2 historical-c9c8fe58ca6706f76e774a3fa61956577367c7da.zip |
Initial import. Closes #31518
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/rl/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/rl/Manifest | 3 | ||||
-rw-r--r-- | app-misc/rl/files/digest-rl-0.2.2 | 1 | ||||
-rw-r--r-- | app-misc/rl/rl-0.2.2.ebuild | 29 |
4 files changed, 43 insertions, 0 deletions
diff --git a/app-misc/rl/ChangeLog b/app-misc/rl/ChangeLog new file mode 100644 index 000000000000..118c201368a5 --- /dev/null +++ b/app-misc/rl/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-misc/rl +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/rl/ChangeLog,v 1.1 2003/10/20 09:10:07 brandy Exp $ + +*rl-0.2.2 (20 Oct 2003) + + 20 Oct 2003; Brandy Westcott brandy@gentoo.org rl-0.2.2.ebuild: + Initial import. Thanks to Sven Wegener <sven.wegener@stealer.net> for + submitting the ebuild. Closes #31518. + diff --git a/app-misc/rl/Manifest b/app-misc/rl/Manifest new file mode 100644 index 000000000000..1db7cd5ea14e --- /dev/null +++ b/app-misc/rl/Manifest @@ -0,0 +1,3 @@ +MD5 7b68dda0daa18126d4d559325463d4c6 rl-0.2.2.ebuild 756 +MD5 8fb20d862dcdcec045cafaf073481cb7 ChangeLog 408 +MD5 c4b0edbb6636a114dae5cf17e3d8bb4f files/digest-rl-0.2.2 60 diff --git a/app-misc/rl/files/digest-rl-0.2.2 b/app-misc/rl/files/digest-rl-0.2.2 new file mode 100644 index 000000000000..5d3ff46e4e4a --- /dev/null +++ b/app-misc/rl/files/digest-rl-0.2.2 @@ -0,0 +1 @@ +MD5 4be20e6633026d3f1fc3a44f0a856ad0 rl-0.2.2.tar.gz 108678 diff --git a/app-misc/rl/rl-0.2.2.ebuild b/app-misc/rl/rl-0.2.2.ebuild new file mode 100644 index 000000000000..bf61e9866149 --- /dev/null +++ b/app-misc/rl/rl-0.2.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/rl/rl-0.2.2.ebuild,v 1.1 2003/10/20 09:10:07 brandy Exp $ + +DESCRIPTION="Randomize lines from text files or stdin" +HOMEPAGE="http://tiefighter.et.tudelft.nl/~arthur/rl/" +SRC_URI="http://tiefighter.et.tudelft.nl/~arthur/rl/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="debug" +DEPEND="virtual/glibc" + +src_compile() { + local myconf="" + + use debug && myconf="${myconf} --enable-debug" + + econf ${myconf} || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR=${D} || die "install failed" + + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO +} |