diff options
author | Marijn Schouten <hkbst@gentoo.org> | 2008-02-15 18:04:24 +0000 |
---|---|---|
committer | Marijn Schouten <hkbst@gentoo.org> | 2008-02-15 18:04:24 +0000 |
commit | 062ab55da7abe8e76c5cdf2109eb69d270b708a9 (patch) | |
tree | 523edc8340762ae18852e73f469dd66715b85f75 /dev-php/roadsend-php | |
parent | bump 1.3.7+unquoted variable fixes, cleanup old ebuilds (diff) | |
download | gentoo-2-062ab55da7abe8e76c5cdf2109eb69d270b708a9.tar.gz gentoo-2-062ab55da7abe8e76c5cdf2109eb69d270b708a9.tar.bz2 gentoo-2-062ab55da7abe8e76c5cdf2109eb69d270b708a9.zip |
bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-php/roadsend-php')
-rw-r--r-- | dev-php/roadsend-php/ChangeLog | 12 | ||||
-rw-r--r-- | dev-php/roadsend-php/roadsend-php-2.9.5.ebuild (renamed from dev-php/roadsend-php/roadsend-php-2.9.2.ebuild) | 12 |
2 files changed, 17 insertions, 7 deletions
diff --git a/dev-php/roadsend-php/ChangeLog b/dev-php/roadsend-php/ChangeLog index 546c6ee2c91b..64825676342c 100644 --- a/dev-php/roadsend-php/ChangeLog +++ b/dev-php/roadsend-php/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for dev-php/roadsend-php # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.5 2008/01/18 12:21:22 hkbst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.6 2008/02/15 18:04:24 hkbst Exp $ + +*roadsend-php-2.9.5 (15 Feb 2008) + + 15 Feb 2008; Marijn Schouten <hkBst@gentoo.org> + +roadsend-php-2.9.5.ebuild: + bump: +the sockets extension has been implemented (TCP streams only) +more build system fixes +lots of optimizations to the runtime and FastCGI backend +runtime fixes *roadsend-php-2.9.4 (18 Jan 2008) diff --git a/dev-php/roadsend-php/roadsend-php-2.9.2.ebuild b/dev-php/roadsend-php/roadsend-php-2.9.5.ebuild index 4db5afcbed50..8ae24a0aff4c 100644 --- a/dev-php/roadsend-php/roadsend-php-2.9.2.ebuild +++ b/dev-php/roadsend-php/roadsend-php-2.9.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.2.ebuild,v 1.1 2007/08/20 10:18:28 hkbst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.5.ebuild,v 1.1 2008/02/15 18:04:24 hkbst Exp $ MY_PVL=${PV/_p/-r} MY_PV=${PV%%_p[0-9]} @@ -14,7 +14,7 @@ LICENSE="GPL-2 LGPL-2.1" KEYWORDS="~amd64 ~x86" -DEPEND="dev-scheme/bigloo +DEPEND=">=dev-scheme/bigloo-3.0c >=net-misc/curl-7.15.1-r1 mysql? ( dev-db/mysql ) sqlite3? ( >=dev-db/sqlite-3.3.12 ) @@ -35,9 +35,9 @@ src_compile() { econf $(use_with pcre) $(use_with fastcgi fcgi) $(use_with xml) $(use_with mysql) $(use_with sqlite3) $(use_with odbc) if use debug; then - emake -j1 || die "make debug failed" + emake -j1 debug || die "make debug failed" else - emake -j1 unsafe || die "make failed" + emake -j1 || die "make failed" fi } @@ -46,5 +46,5 @@ src_test() { } src_install() { - emake -j1 DESTDIR=${D} install || die "make install failed" + emake -j1 DESTDIR="${D}" install || die "make install failed" } |