summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2009-03-20 10:31:07 +0000
committerCédric Krier <cedk@gentoo.org>2009-03-20 10:31:07 +0000
commit827912f4f32a1436297ab1d131afa34d5f5439e8 (patch)
tree5787abc010a7bd55a0e8d88425061247ed69f674 /net-news
parentAutomated update of use.local.desc (diff)
downloadgentoo-2-827912f4f32a1436297ab1d131afa34d5f5439e8.tar.gz
gentoo-2-827912f4f32a1436297ab1d131afa34d5f5439e8.tar.bz2
gentoo-2-827912f4f32a1436297ab1d131afa34d5f5439e8.zip
Version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'net-news')
-rw-r--r--net-news/snownews/ChangeLog9
-rw-r--r--net-news/snownews/snownews-1.5.11.ebuild47
2 files changed, 54 insertions, 2 deletions
diff --git a/net-news/snownews/ChangeLog b/net-news/snownews/ChangeLog
index 49a615a3c43d..b6e620524405 100644
--- a/net-news/snownews/ChangeLog
+++ b/net-news/snownews/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-news/snownews
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v 1.27 2008/11/09 23:48:05 tcunha Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v 1.28 2009/03/20 10:31:07 cedk Exp $
+
+*snownews-1.5.11 (20 Mar 2009)
+
+ 20 Mar 2009; Cédric Krier <cedk@gentoo.org> +snownews-1.5.11.ebuild:
+ Version bump
09 Nov 2008; Tiago Cunha <tcunha@gentoo.org> snownews-1.5.10.ebuild:
stable sparc, bug 244538
diff --git a/net-news/snownews/snownews-1.5.11.ebuild b/net-news/snownews/snownews-1.5.11.ebuild
new file mode 100644
index 000000000000..5612adebf17f
--- /dev/null
+++ b/net-news/snownews/snownews-1.5.11.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/snownews-1.5.11.ebuild,v 1.1 2009/03/20 10:31:07 cedk Exp $
+
+inherit eutils toolchain-funcs
+
+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="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=">=dev-libs/libxml2-2.5.6
+ >=sys-libs/ncurses-5.3"
+
+RDEPEND="dev-perl/XML-LibXML
+ dev-perl/XML-LibXSLT
+ dev-perl/libwww-perl"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ sed -i -e "s/-O2//" \
+ configure
+
+ sed -i -e 's/$(INSTALL) -s/$(INSTALL)/' \
+ Makefile
+
+ #Bug #121805
+ epatch "${FILESDIR}"/${PN}-1.5.7-stdint.patch
+}
+
+src_compile() {
+ local conf="--prefix=/usr"
+ ./configure ${conf} || die "configure failed"
+ emake CC="$(tc-getCC)" EXTRA_CFLAGS="${CFLAGS}" EXTRA_LDFLAGS="${LDFLAGS}" || die "emake failed"
+}
+
+src_install() {
+ emake PREFIX="${D}/usr" install || die "make install failed"
+
+ dodoc AUTHOR CREDITS README README.de README.patching
+}