diff options
Diffstat (limited to 'net-misc/rol/rol-0.2.2.ebuild')
-rw-r--r-- | net-misc/rol/rol-0.2.2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-misc/rol/rol-0.2.2.ebuild b/net-misc/rol/rol-0.2.2.ebuild new file mode 100644 index 000000000000..8854a9955e46 --- /dev/null +++ b/net-misc/rol/rol-0.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/rol/rol-0.2.2.ebuild,v 1.1 2003/03/12 02:02:04 sethbc Exp $ + +inherit eutils + +DESCRIPTION="A RSS/RDF Newsreader" +HOMEPAGE="http://unknown-days.com/rol/" +SRC_URI="http://unknown-days.com/rol/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +S="${WORKDIR}/${P}" + +DEPEND="virtual/x11 + >=dev-libs/libxml2-2.4.24 + >=x11-libs/gtk+-2.0.9" + +src_unpack() { + unpack ${A} +} + +src_compile() { + emake || die +} + +src_install() { + cd ${S}/src + dobin rol + cd ${S} + dodoc AUTHORS ChangeLog README SITES +} |