diff options
Diffstat (limited to 'net-www/snownews/snownews-1.5.5.1.ebuild')
-rw-r--r-- | net-www/snownews/snownews-1.5.5.1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-www/snownews/snownews-1.5.5.1.ebuild b/net-www/snownews/snownews-1.5.5.1.ebuild new file mode 100644 index 000000000000..a7c4f125e96b --- /dev/null +++ b/net-www/snownews/snownews-1.5.5.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/snownews/snownews-1.5.5.1.ebuild,v 1.1 2004/11/08 16:30:41 citizen428 Exp $ + +IUSE="" + +DESCRIPTION="Snownews, a text-mode RSS/RDF newsreader" +HOMEPAGE="http://snownews.kcore.de/" +SRC_URI="http://home.kcore.de/~kiza/software/snownews/download/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~amd64" + +DEPEND=">=dev-libs/libxml2-2.5.6 + >=sys-libs/ncurses-5.3 + dev-perl/XML-LibXML" + +src_compile() { + ./configure --prefix=/usr || die + emake || die +} + +src_install() { + make PREFIX=${D}/usr install || die + + dodoc AUTHOR CREDITS README README.colors README.de README.patching +} |