blob: 26202da1687d5f61d62f35712ea80944efe192c3 (
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-2004 Gentoo Foundation
# 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.10 2004/12/17 07:47:42 josejx 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 sparc ~mips s390 ~amd64 ~ppc"
IUSE="debug"
DEPEND="virtual/libc"
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 ChangeLog INSTALL NEWS README TODO
}
|