public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php5/eaccelerator: ChangeLog eaccelerator-0.9.6.1-r1.ebuild
@ 2010-11-03 22:11 Ole Markus With (olemarkus)
  0 siblings, 0 replies; 3+ messages in thread
From: Ole Markus With (olemarkus) @ 2010-11-03 22:11 UTC (permalink / raw
  To: gentoo-commits

olemarkus    10/11/03 22:11:41

  Modified:             ChangeLog
  Added:                eaccelerator-0.9.6.1-r1.ebuild
  Log:
  Added a version that supports minor version slotting
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 dev-php5/eaccelerator/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	23 Oct 2010 08:25:41 -0000	1.26
+++ ChangeLog	3 Nov 2010 22:11:40 -0000	1.27
@@ -1,6 +1,11 @@
 # ChangeLog for dev-php5/eaccelerator
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v 1.26 2010/10/23 08:25:41 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v 1.27 2010/11/03 22:11:40 olemarkus Exp $
+
+*eaccelerator-0.9.6.1-r1 (03 Nov 2010)
+
+  03 Nov 2010; <olemarkus@gentoo.org> +eaccelerator-0.9.6.1-r1.ebuild:
+  Added a version that supports minor version slotting
 
   23 Oct 2010; <olemarkus@gentoo.org> eaccelerator-0.9.6.1.ebuild:
   Swapped depending on specific httpd SAPI's with virtual/httpd-php. Thanks to Andrey Yurchuk for notifying



1.1                  dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: eaccelerator-0.9.6.1-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v 1.1 2010/11/03 22:11:40 olemarkus Exp $

PHP_EXT_NAME="eaccelerator"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"

EAPI="2"

[[ -z "${EACCELERATOR_CACHEDIR}" ]] && EACCELERATOR_CACHEDIR="/var/cache/eaccelerator-php5/"

inherit php-ext-source-r2 eutils depend.apache

KEYWORDS="~amd64 ~x86"

DESCRIPTION="A PHP Accelerator & Encoder."
HOMEPAGE="http://www.eaccelerator.net/"
SRC_URI="http://bart.eaccelerator.net/source/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
IUSE="debug disassembler inode doccommentinclusion session"

DEPEND="!dev-php5/pecl-apc !dev-php5/xcache"
RDEPEND="${DEPEND}
	>=dev-lang/php-5.1[zlib,session?]
	virtual/httpd-php
"

# Webserver user and group, here for Apache by default
HTTPD_USER="${HTTPD_USER:-apache}"
HTTPD_GROUP="${HTTPD_GROUP:-apache}"

want_apache

pkg_setup() {
	depend.apache_pkg_setup

	if ! use apache2 ; then
		if [[ ${HTTPD_USER} == "apache" ]] || [[ ${HTTPD_GROUP} == "apache" ]] ; then
			eerror "You did not enable apache2 USE flag, so you need to define"
			eerror "the user and group that will be used for ${PN} yourself."
			eerror
			eerror "This should (generally) match the user and group that your webserver uses, e.g.:"
			eerror "HTTPD_USER=\"lighttpd\" HTTPD_GROUP=\"lighttpd\" if using www-servers/lighttpd"
			eerror
			die "Either enable USE=\"apache2\" or re-emerge this with HTTPD_USER and HTTPD_GROUP set"
		else
			enewgroup ${HTTPD_GROUP}
			enewuser ${HTTPD_USER} -1 -1 /var/www ${HTTPD_GROUP}
		fi
	fi
}

src_compile() {
	my_conf="--enable-eaccelerator=shared --with-eaccelerator-userid=`id -u ${HTTPD_USER}`"
	use debug && my_conf="${my_conf} --with-eaccelerator-debug"
	use disassembler && my_conf="${my_conf} --with-eaccelerator-disassembler"
	! use inode && my_conf="${my_conf} --without-eaccelerator-use-inode"
	use doccommentinclusion && my_conf="${my_conf} --with-eaccelerator-doc-comment-inclusion"
	php-ext-source-r2_src_compile
}

src_install() {
	php-ext-source-r2_src_install

	keepdir "${EACCELERATOR_CACHEDIR}"
	fowners ${HTTPD_USER}:${HTTPD_GROUP} "${EACCELERATOR_CACHEDIR}"
	fperms 750 "${EACCELERATOR_CACHEDIR}"

	insinto "/usr/share/${PVR}"
	doins -r doc/php/
	dodoc AUTHORS ChangeLog NEWS README

	php-ext-source-r2_addtoinifiles "eaccelerator.shm_size" '"28"'
	php-ext-source-r2_addtoinifiles "eaccelerator.cache_dir" "\"${EACCELERATOR_CACHEDIR}\""
	php-ext-source-r2_addtoinifiles "eaccelerator.enable" '"1"'
	php-ext-source-r2_addtoinifiles "eaccelerator.optimizer" '"1"'
	php-ext-source-r2_addtoinifiles "eaccelerator.debug" '"0"'
	php-ext-source-r2_addtoinifiles ";eaccelerator.log_file" '"/var/log/eaccelerator_log"'
	php-ext-source-r2_addtoinifiles "eaccelerator.check_mtime" '"1"'
	php-ext-source-r2_addtoinifiles "eaccelerator.filter" '""'
	php-ext-source-r2_addtoinifiles "eaccelerator.shm_ttl" '"0"'
	php-ext-source-r2_addtoinifiles "eaccelerator.shm_prune_period" '"0"'
	php-ext-source-r2_addtoinifiles "eaccelerator.shm_only" '"0"'
	php-ext-source-r2_addtoinifiles ";eaccelerator.allowed_admin_path" '"/path/where/admin/files/shall/be/allowed"'
}

pkg_postinst() {
	elog "Please see the files in ${ROOT}usr/share/${PVR}/ for some"
	elog "examples and informations on how to use the functions that"
	elog "eAccelerator adds to PHP."
}






^ permalink raw reply	[flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-php5/eaccelerator: ChangeLog eaccelerator-0.9.6.1-r1.ebuild
@ 2011-01-04  8:47 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-01-04  8:47 UTC (permalink / raw
  To: gentoo-commits

fauli       11/01/04 08:47:48

  Modified:             ChangeLog eaccelerator-0.9.6.1-r1.ebuild
  Log:
  stable x86, bug 349659
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.30                 dev-php5/eaccelerator/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	28 Nov 2010 12:40:21 -0000	1.29
+++ ChangeLog	4 Jan 2011 08:47:48 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php5/eaccelerator
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v 1.29 2010/11/28 12:40:21 hwoarang Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v 1.30 2011/01/04 08:47:48 fauli Exp $
+
+  04 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
+  eaccelerator-0.9.6.1-r1.ebuild:
+  stable x86, bug 349659
 
   28 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
   eaccelerator-0.9.6.1.ebuild:



1.2                  dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?r1=1.1&r2=1.2

Index: eaccelerator-0.9.6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- eaccelerator-0.9.6.1-r1.ebuild	3 Nov 2010 22:11:40 -0000	1.1
+++ eaccelerator-0.9.6.1-r1.ebuild	4 Jan 2011 08:47:48 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v 1.1 2010/11/03 22:11:40 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v 1.2 2011/01/04 08:47:48 fauli Exp $
 
 PHP_EXT_NAME="eaccelerator"
 PHP_EXT_INI="yes"
@@ -12,7 +12,7 @@
 
 inherit php-ext-source-r2 eutils depend.apache
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 DESCRIPTION="A PHP Accelerator & Encoder."
 HOMEPAGE="http://www.eaccelerator.net/"






^ permalink raw reply	[flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-php5/eaccelerator: ChangeLog eaccelerator-0.9.6.1-r1.ebuild
@ 2011-01-04 15:18 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-04 15:18 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/04 15:18:20

  Modified:             ChangeLog eaccelerator-0.9.6.1-r1.ebuild
  Log:
  Stable on amd64 wrt bug #349659
  
  (Portage version: 2.1.9.28/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 dev-php5/eaccelerator/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	4 Jan 2011 13:42:54 -0000	1.31
+++ ChangeLog	4 Jan 2011 15:18:20 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php5/eaccelerator
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v 1.31 2011/01/04 13:42:54 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/ChangeLog,v 1.32 2011/01/04 15:18:20 hwoarang Exp $
+
+  04 Jan 2011; Markos Chandras <hwoarang@gentoo.org>
+  eaccelerator-0.9.6.1-r1.ebuild:
+  Stable on amd64 wrt bug #349659
 
 *eaccelerator-0.9.6.1-r2 (04 Jan 2011)
 



1.3                  dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild?r1=1.2&r2=1.3

Index: eaccelerator-0.9.6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- eaccelerator-0.9.6.1-r1.ebuild	4 Jan 2011 08:47:48 -0000	1.2
+++ eaccelerator-0.9.6.1-r1.ebuild	4 Jan 2011 15:18:20 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v 1.2 2011/01/04 08:47:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/eaccelerator/eaccelerator-0.9.6.1-r1.ebuild,v 1.3 2011/01/04 15:18:20 hwoarang Exp $
 
 PHP_EXT_NAME="eaccelerator"
 PHP_EXT_INI="yes"
@@ -12,7 +12,7 @@
 
 inherit php-ext-source-r2 eutils depend.apache
 
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DESCRIPTION="A PHP Accelerator & Encoder."
 HOMEPAGE="http://www.eaccelerator.net/"






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-04 15:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-03 22:11 [gentoo-commits] gentoo-x86 commit in dev-php5/eaccelerator: ChangeLog eaccelerator-0.9.6.1-r1.ebuild Ole Markus With (olemarkus)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-04  8:47 Christian Faulhammer (fauli)
2011-01-04 15:18 Markos Chandras (hwoarang)

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