Gentoo Archives: gentoo-commits

From: "Cedric Krier (cedk)" <cedk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-news/snownews: ChangeLog snownews-1.5.8.ebuild
Date: Thu, 10 Jan 2008 23:11:02
Message-Id: E1JD6Xv-0007hE-20@stork.gentoo.org
1 cedk 08/01/10 23:10:47
2
3 Modified: ChangeLog
4 Added: snownews-1.5.8.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.19 net-news/snownews/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-news/snownews/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-news/snownews/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-news/snownews/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 14 Jul 2007 16:08:59 -0000 1.18
23 +++ ChangeLog 10 Jan 2008 23:10:46 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-news/snownews
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v 1.18 2007/07/14 16:08:59 cedk Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v 1.19 2008/01/10 23:10:46 cedk Exp $
30 +
31 +*snownews-1.5.8 (10 Jan 2008)
32 +
33 + 10 Jan 2008; Cédric Krier <cedk@g.o> +snownews-1.5.8.ebuild:
34 + Version bump
35
36 14 Jul 2007; Cédric Krier <cedk@g.o> -snownews-1.5.7-r1.ebuild:
37 Remove old
38
39
40
41 1.1 net-news/snownews/snownews-1.5.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-news/snownews/snownews-1.5.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-news/snownews/snownews-1.5.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: snownews-1.5.8.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-news/snownews/snownews-1.5.8.ebuild,v 1.1 2008/01/10 23:10:46 cedk Exp $
51
52 inherit eutils toolchain-funcs
53
54 DESCRIPTION="Snownews, a text-mode RSS/RDF newsreader"
55 HOMEPAGE="http://snownews.kcore.de/"
56 SRC_URI="http://home.kcore.de/~kiza/software/snownews/download/${P}.tar.gz"
57 LICENSE="GPL-2"
58
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 IUSE="unicode"
62
63 DEPEND=">=dev-libs/libxml2-2.5.6
64 >=sys-libs/ncurses-5.3"
65
66 RDEPEND="dev-perl/XML-LibXML
67 dev-perl/XML-LibXSLT
68 dev-perl/libwww-perl"
69
70 pkg_setup() {
71 if use unicode && ! built_with_use sys-libs/ncurses unicode; then
72 eerror "sys-libs/ncurses must be build with unicode"
73 die "${PN} requires sys-libs/ncurses with USE=unicode"
74 fi
75 }
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
80
81 sed -i -e "s/-O2//" \
82 configure
83
84 sed -i -e 's/$(INSTALL) -s/$(INSTALL)/' \
85 Makefile
86
87 #Bug #121805
88 epatch "${FILESDIR}"/${PN}-1.5.7-stdint.patch
89 }
90
91 src_compile() {
92 local conf="--prefix=/usr"
93 use unicode && conf="${conf} --charset=UTF-8"
94 ./configure ${conf} || die "configure failed"
95 emake CC="$(tc-getCC)" EXTRA_CFLAGS="${CFLAGS}" EXTRA_LDFLAGS="${LDFLAGS}" || die "emake failed"
96 }
97
98 src_install() {
99 emake PREFIX="${D}/usr" install || die "make install failed"
100
101 dodoc AUTHOR CREDITS README README.colors README.de README.patching
102 }
103
104
105
106 --
107 gentoo-commits@l.g.o mailing list