Gentoo Archives: gentoo-commits

From: "Marijn Schouten (hkbst)" <hkbst@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/roadsend-php: ChangeLog roadsend-php-2.9.6.ebuild
Date: Fri, 25 Apr 2008 12:20:47
Message-Id: E1JpMuy-0000ge-7H@stork.gentoo.org
1 hkbst 08/04/25 12:20:44
2
3 Modified: ChangeLog
4 Added: roadsend-php-2.9.6.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.7 dev-php/roadsend-php/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 15 Feb 2008 18:04:24 -0000 1.6
23 +++ ChangeLog 25 Apr 2008 12:20:43 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-php/roadsend-php
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.6 2008/02/15 18:04:24 hkbst Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.7 2008/04/25 12:20:43 hkbst Exp $
29 +
30 +*roadsend-php-2.9.6 (25 Apr 2008)
31 +
32 + 25 Apr 2008; Marijn Schouten <hkBst@g.o>
33 + +files/bigloo-3.1a-configsupport.patch, +roadsend-php-2.9.6.ebuild:
34 + bump
35
36 *roadsend-php-2.9.5 (15 Feb 2008)
37
38
39
40
41 1.1 dev-php/roadsend-php/roadsend-php-2.9.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roadsend-php-2.9.6.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/dev-php/roadsend-php/roadsend-php-2.9.6.ebuild,v 1.1 2008/04/25 12:20:43 hkbst Exp $
51
52 inherit eutils
53
54 MY_PVL=${PV/_p/-r}
55 MY_PV=${PV%%_p[0-9]}
56 MY_PL=${PN}-${MY_PVL}
57 MY_P=${PN}-${MY_PV}
58
59 DESCRIPTION="Roadsend PHP compiler"
60 HOMEPAGE="http://code.roadsend.com/pcc"
61 SRC_URI="http://code.roadsend.com/snaps/${MY_PL}.tar.bz2"
62 LICENSE="GPL-2 LGPL-2.1"
63
64 KEYWORDS="~amd64 ~x86"
65
66 DEPEND=">=dev-scheme/bigloo-3.0c
67 >=net-misc/curl-7.15.1-r1
68 mysql? ( dev-db/mysql )
69 sqlite3? ( >=dev-db/sqlite-3.3.12 )
70 pcre? ( >=dev-libs/libpcre-6.6 )
71 xml? ( dev-libs/libxml2 )
72 odbc? ( dev-db/unixODBC )
73 fastcgi? ( dev-libs/fcgi )"
74
75 RDEPEND="${DEPEND}"
76 SLOT="0"
77
78 IUSE="debug fastcgi mysql odbc pcre sqlite3 xml"
79 #IUSE="fastcgi mysql odbc pcre sqlite3 xml"
80
81 S="${WORKDIR}/${MY_P}"
82
83 src_unpack() {
84 unpack ${A}; cd "${S}"
85 epatch "${FILESDIR}"/bigloo-3.1a-configsupport.patch
86 }
87
88 src_compile() {
89 econf $(use_with pcre) $(use_with fastcgi fcgi) $(use_with xml) $(use_with mysql) $(use_with sqlite3) $(use_with odbc)
90
91 if use debug; then
92 emake -j1 debug || die "make debug failed"
93 else
94 emake -j1 || die "make failed"
95 fi
96 }
97
98 src_test() {
99 LD_LIBRARY_PATH="${S}/libs/" emake -j1 test || die "standalone tests failed"
100 }
101
102 src_install() {
103 emake -j1 DESTDIR="${D}" install || die "make install failed"
104 }
105
106
107
108 --
109 gentoo-commits@l.g.o mailing list