public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php/roadsend-php: ChangeLog roadsend-php-2.9.9_p1.ebuild roadsend-php-2.9.4.ebuild roadsend-php-2.9.8.ebuild roadsend-php-2.9.5.ebuild roadsend-php-2.9.3.ebuild roadsend-php-2.9.6.ebuild
@ 2010-02-23  3:49 Ben de Groot (yngwin)
  0 siblings, 0 replies; only message in thread
From: Ben de Groot (yngwin) @ 2010-02-23  3:49 UTC (permalink / raw
  To: gentoo-commits

yngwin      10/02/23 03:49:41

  Modified:             ChangeLog
  Added:                roadsend-php-2.9.9_p1.ebuild
  Removed:              roadsend-php-2.9.4.ebuild roadsend-php-2.9.8.ebuild
                        roadsend-php-2.9.5.ebuild roadsend-php-2.9.3.ebuild
                        roadsend-php-2.9.6.ebuild
  Log:
  Version bump (bug 273210). Remove old versions. Migrate to eapi-2. Fix sqlite useflag (bug 251396).
  (Portage version: 2.2_rc62/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 dev-php/roadsend-php/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	31 Dec 2008 00:16:21 -0000	1.10
+++ ChangeLog	23 Feb 2010 03:49:40 -0000	1.11
@@ -1,6 +1,15 @@
 # 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.10 2008/12/31 00:16:21 hkbst Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/roadsend-php/ChangeLog,v 1.11 2010/02/23 03:49:40 yngwin Exp $
+
+*roadsend-php-2.9.9_p1 (23 Feb 2010)
+
+  23 Feb 2010; Ben de Groot <yngwin@gentoo.org> -roadsend-php-2.9.3.ebuild,
+  -roadsend-php-2.9.4.ebuild, -roadsend-php-2.9.5.ebuild,
+  -roadsend-php-2.9.6.ebuild, -roadsend-php-2.9.8.ebuild,
+  +roadsend-php-2.9.9_p1.ebuild, -files/bigloo-3.1a-configsupport.patch:
+  Version bump (bug 273210). Remove old versions. Migrate to eapi-2. Fix
+  sqlite useflag (bug 251396).
 
 *roadsend-php-2.9.8 (31 Dec 2008)
 



1.1                  dev-php/roadsend-php/roadsend-php-2.9.9_p1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.9_p1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/roadsend-php/roadsend-php-2.9.9_p1.ebuild?rev=1.1&content-type=text/plain

Index: roadsend-php-2.9.9_p1.ebuild
===================================================================
# Copyright 1999-2010 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.9_p1.ebuild,v 1.1 2010/02/23 03:49:40 yngwin Exp $

EAPI=2
inherit eutils

MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}

DESCRIPTION="PHP compiler"
HOMEPAGE="http://code.roadsend.com/pcc"
SRC_URI="http://code.roadsend.com/snaps/${MY_P}.tar.bz2"

LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug fastcgi mysql odbc pcre sqlite xml"

DEPEND="dev-scheme/bigloo
	net-misc/curl
	mysql? ( dev-db/mysql )
	sqlite? ( dev-db/sqlite:3 )
	pcre? ( dev-libs/libpcre )
	xml? ( dev-libs/libxml2 )
	odbc? ( dev-db/unixODBC )
	fastcgi? ( dev-libs/fcgi )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

src_configure() {
	econf $(use_with pcre) \
		$(use_with fastcgi fcgi) \
		$(use_with xml) \
		$(use_with mysql) \
		$(use_with sqlite sqlite3) \
		$(use_with odbc)
}

src_compile() {
	if use debug; then
		emake -j1 debug || die "make debug failed"
	else
		emake -j1 || die "make failed"
	fi
}

src_test() {
	LD_LIBRARY_PATH="${S}/libs/" emake -j1 test || die "standalone tests failed"
}

src_install() {
	emake -j1 DESTDIR="${D}" install || die "make install failed"
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-02-23  3:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-23  3:49 [gentoo-commits] gentoo-x86 commit in dev-php/roadsend-php: ChangeLog roadsend-php-2.9.9_p1.ebuild roadsend-php-2.9.4.ebuild roadsend-php-2.9.8.ebuild roadsend-php-2.9.5.ebuild roadsend-php-2.9.3.ebuild roadsend-php-2.9.6.ebuild Ben de Groot (yngwin)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox