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.8.ebuild
Date: Wed, 31 Dec 2008 00:16:24
Message-Id: E1LHol3-00031L-AY@stork.gentoo.org
1 hkbst 08/12/31 00:16:21
2
3 Modified: ChangeLog
4 Added: roadsend-php-2.9.8.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.6.2/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.10 dev-php/roadsend-php/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 17 Nov 2008 20:55:51 -0000 1.9
23 +++ ChangeLog 31 Dec 2008 00:16:21 -0000 1.10
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.9 2008/11/17 20:55:51 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.10 2008/12/31 00:16:21 hkbst Exp $
29 +
30 +*roadsend-php-2.9.8 (31 Dec 2008)
31 +
32 + 31 Dec 2008; Marijn Schouten <hkBst@g.o>
33 + +roadsend-php-2.9.8.ebuild:
34 + bump
35
36 17 Nov 2008; Diego E. Pettenò <flameeyes@g.o>
37 files/bigloo-3.1a-configsupport.patch:
38
39
40
41 1.1 dev-php/roadsend-php/roadsend-php-2.9.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roadsend-php-2.9.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/dev-php/roadsend-php/roadsend-php-2.9.8.ebuild,v 1.1 2008/12/31 00:16:21 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_compile() {
84 econf $(use_with pcre) $(use_with fastcgi fcgi) $(use_with xml) $(use_with mysql) $(use_with sqlite3) $(use_with odbc)
85
86 if use debug; then
87 emake -j1 debug || die "make debug failed"
88 else
89 emake -j1 || die "make failed"
90 fi
91 }
92
93 src_test() {
94 LD_LIBRARY_PATH="${S}/libs/" emake -j1 test || die "standalone tests failed"
95 }
96
97 src_install() {
98 emake -j1 DESTDIR="${D}" install || die "make install failed"
99 }