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.3.ebuild
Date: Tue, 01 Jan 2008 18:00:37
Message-Id: E1J9lPj-0005ZB-4P@stork.gentoo.org
1 hkbst 08/01/01 18:00:31
2
3 Modified: ChangeLog
4 Added: roadsend-php-2.9.3.ebuild
5 Log:
6 add bump, 2.9.3 should support all core PHP5 stuff
7 (Portage version: 2.1.4_rc14)
8
9 Revision Changes Path
10 1.4 dev-php/roadsend-php/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 20 Aug 2007 10:18:28 -0000 1.3
23 +++ ChangeLog 1 Jan 2008 18:00:30 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-php/roadsend-php
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.3 2007/08/20 10:18:28 hkbst Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.4 2008/01/01 18:00:30 hkbst Exp $
30 +
31 +*roadsend-php-2.9.3 (01 Jan 2008)
32 +
33 + 01 Jan 2008; Marijn Schouten <hkBst@g.o>
34 + +roadsend-php-2.9.3.ebuild:
35 + add bump, 2.9.3 should support all core PHP5 stuff
36
37 *roadsend-php-2.9.2 (20 Aug 2007)
38
39
40
41
42 1.1 dev-php/roadsend-php/roadsend-php-2.9.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: roadsend-php-2.9.3.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.3.ebuild,v 1.1 2008/01/01 18:00:30 hkbst Exp $
52
53 MY_PVL=${PV/_p/-r}
54 MY_PV=${PV%%_p[0-9]}
55 MY_PL=${PN}-${MY_PVL}
56 MY_P=${PN}-${MY_PV}
57
58 DESCRIPTION="Roadsend PHP compiler"
59 HOMEPAGE="http://code.roadsend.com/pcc"
60 SRC_URI="http://code.roadsend.com/snaps/${MY_PL}.tar.bz2"
61 LICENSE="GPL-2 LGPL-2.1"
62
63 KEYWORDS="~amd64 ~x86"
64
65 DEPEND=">=dev-scheme/bigloo-3.0c
66 >=net-misc/curl-7.15.1-r1
67 mysql? ( dev-db/mysql )
68 sqlite3? ( >=dev-db/sqlite-3.3.12 )
69 pcre? ( >=dev-libs/libpcre-6.6 )
70 xml? ( dev-libs/libxml2 )
71 odbc? ( dev-db/unixODBC )
72 fastcgi? ( dev-libs/fcgi )"
73
74 RDEPEND="${DEPEND}"
75 SLOT="0"
76
77 IUSE="debug fastcgi mysql odbc pcre sqlite3 xml"
78 #IUSE="fastcgi mysql odbc pcre sqlite3 xml"
79
80 S="${WORKDIR}/${MY_P}"
81
82 src_compile() {
83 econf $(use_with pcre) $(use_with fastcgi fcgi) $(use_with xml) $(use_with mysql) $(use_with sqlite3) $(use_with odbc)
84
85 if use debug; then
86 emake -j1 || die "make debug failed"
87 else
88 emake -j1 unsafe || die "make failed"
89 fi
90 }
91
92 src_test() {
93 LD_LIBRARY_PATH="${S}/libs/" emake -j1 test || die "standalone tests failed"
94 }
95
96 src_install() {
97 emake -j1 DESTDIR="${D}" install || die "make install failed"
98 }
99
100
101
102 --
103 gentoo-commits@g.o mailing list