# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Randomize Lines" 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" RDEPEND="${DEPEND}" S=${WORKDIR}/${P} src_compile() { local myconf use debug && myconf="${myconf} --enable-debug" econf ${myconf} || die emake || die } src_install() { make install DESTDIR=${D} || die dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO }