Gentoo Archives: gentoo-commits

From: "Julien Allanos (dju)" <dju@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/clearsilver: ChangeLog clearsilver-0.10.5.ebuild
Date: Fri, 02 Nov 2007 15:51:21
Message-Id: E1Inyni-0007tE-FQ@stork.gentoo.org
1 dju 07/11/02 15:51:14
2
3 Modified: ChangeLog
4 Added: clearsilver-0.10.5.ebuild
5 Log:
6 Version bump to 0.10.5, fixing bug #191601. Added user patch to fix bug #196422.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.31 dev-libs/clearsilver/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/clearsilver/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/clearsilver/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/clearsilver/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 15 May 2007 16:43:40 -0000 1.30
23 +++ ChangeLog 2 Nov 2007 15:51:13 -0000 1.31
24 @@ -1,6 +1,14 @@
25 # ChangeLog for dev-libs/clearsilver
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/ChangeLog,v 1.30 2007/05/15 16:43:40 beandog Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/ChangeLog,v 1.31 2007/11/02 15:51:13 dju Exp $
29 +
30 +*clearsilver-0.10.5 (02 Nov 2007)
31 +
32 + 02 Nov 2007; Julien Allanos <dju@g.o>
33 + +files/clearsilver-0.10.5-libdir.patch,
34 + +files/clearsilver-0.10.5-libz.patch, +clearsilver-0.10.5.ebuild:
35 + Version bump to 0.10.5, fixing bug #191601.
36 + Added user patch to fix bug #196422.
37
38 15 May 2007; Steve Dibb <beandog@g.o> clearsilver-0.10.1.ebuild:
39 amd64 stable
40
41
42
43 1.1 dev-libs/clearsilver/clearsilver-0.10.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: clearsilver-0.10.5.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/clearsilver/clearsilver-0.10.5.ebuild,v 1.1 2007/11/02 15:51:13 dju Exp $
53
54 # Please note: apache, java, mono and ruby support disabled for now.
55 # Fill a bug if you need it.
56 #
57 # dju@g.o, 4th July 2005
58
59 inherit eutils perl-app multilib autotools
60
61 DESCRIPTION="Clearsilver is a fast, powerful, and language-neutral HTML template system."
62 HOMEPAGE="http://www.clearsilver.net/"
63 SRC_URI="http://www.clearsilver.net/downloads/${P}.tar.gz"
64
65 LICENSE="CS-1.0"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68 IUSE="perl python zlib"
69
70 DEPEND="python? ( dev-lang/python )
71 perl? ( dev-lang/perl )
72 zlib? ( sys-libs/zlib )"
73
74 DOCS="README INSTALL"
75
76 if use python ; then
77 DOCS="${DOCS} README.python"
78 fi
79
80 src_unpack() {
81 unpack ${A}
82 cd ${S}
83
84 use zlib && epatch "${FILESDIR}"/${P}-libz.patch
85
86 epatch "${FILESDIR}"/${P}-libdir.patch
87 sed -i -e "s:GENTOO_LIBDIR:$(get_libdir):" configure.in
88 eautoreconf || die "eautoreconf failed"
89
90 # Fix for Gentoo/Freebsd
91 [[ "${ARCH}" == FreeBSD ]] && touch ${S}/features.h ${S}/cgi/features.h
92 }
93
94 src_compile() {
95 econf \
96 $(use_enable perl) \
97 $(use_with perl perl /usr/bin/perl) \
98 $(use_enable python) \
99 $(use_with python python /usr/bin/python) \
100 $(use_enable zlib compression) \
101 "--disable-apache" \
102 "--disable-ruby" \
103 "--disable-java" \
104 "--disable-csharp" \
105 || die "./configure failed"
106
107 emake || die "emake failed"
108 }
109
110 src_install () {
111 cd ${S}
112
113 make DESTDIR=${D} install || die "make install failed"
114
115 dodoc ${DOCS} || die "dodoc failed"
116
117 if use perl ; then
118 fixlocalpod || die "fixlocalpod failed"
119 fi
120 }
121
122
123
124 --
125 gentoo-commits@g.o mailing list