public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-php5/php-gtk: ChangeLog php-gtk-2.0.1-r4.ebuild
@ 2010-11-04 17:50 Matti Bickel (mabi)
  0 siblings, 0 replies; 2+ messages in thread
From: Matti Bickel (mabi) @ 2010-11-04 17:50 UTC (permalink / raw
  To: gentoo-commits

mabi        10/11/04 17:50:57

  Modified:             ChangeLog
  Added:                php-gtk-2.0.1-r4.ebuild
  Log:
  add version supporting minor version slotting
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-php5/php-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	25 Jul 2010 19:10:00 -0000	1.22
+++ ChangeLog	4 Nov 2010 17:50:57 -0000	1.23
@@ -1,6 +1,11 @@
 # ChangeLog for dev-php5/php-gtk
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/ChangeLog,v 1.22 2010/07/25 19:10:00 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/ChangeLog,v 1.23 2010/11/04 17:50:57 mabi Exp $
+
+*php-gtk-2.0.1-r4 (04 Nov 2010)
+
+  04 Nov 2010; Matti Bickel <mabi@gentoo.org> +php-gtk-2.0.1-r4.ebuild:
+  add version supporting minor version slotting
 
   25 Jul 2010; Nirbheek Chauhan <nirbheek@gentoo.org>
   php-gtk-2.0.1-r2.ebuild, php-gtk-2.0.1-r3.ebuild:



1.1                  dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild?rev=1.1&content-type=text/plain

Index: php-gtk-2.0.1-r4.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild,v 1.1 2010/11/04 17:50:57 mabi Exp $

EAPI="2"

PHP_EXT_NAME="php_gtk2"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
PHPSAPILIST="cli"
USE_PHP="php5-2"

DOCS="AUTHORS ChangeLog INSTALL NEWS README README.KNOWN-ISSUES TODO2"

inherit php-ext-source-r2 virtualx

DESCRIPTION="PHP 5 bindings for the Gtk+ 2 library."
HOMEPAGE="http://gtk.php.net/"
SRC_URI="http://gtk.php.net/distributions/${P}.tar.gz"
IUSE="debug doc examples +glade gtkhtml libsexy mozembed scintilla spell"
LICENSE="PHP-2.02 PHP-3 PHP-3.01 LGPL-2.1 public-domain Scintilla"
SLOT="0"
KEYWORDS="~amd64 ~x86"

MYDOC_PN="php_gtk_manual"
MYDOC_PV="20071130"

LANGS="bg en ja pt_BR zh_CN"
for lang in ${LANGS} ; do
	IUSE="${IUSE} linguas_${lang}"
	SRC_URI="${SRC_URI}
		doc? ( linguas_${lang}? ( http://dev.gentooexperimental.org/~jakub/distfiles/${MYDOC_PN}-${MYDOC_PV}_${lang}.tar.bz2
					    mirror://gentoo/${MYDOC_PN}-${MYDOC_PV}_${lang}.tar.bz2 ) )"
done

RDEPEND=">=dev-lang/php-5.1.2
	<dev-lang/php-5.3[pcre,cli,debug=]
	>=x11-libs/gtk+-2.6.0
	>=dev-libs/glib-2.6.0
	>=x11-libs/pango-1.8.0
	>=dev-libs/atk-1.9.0
	glade? ( >=gnome-base/libglade-2.5.0 )
	libsexy? ( >=x11-libs/libsexy-0.1.10 )
	gtkhtml? ( gnome-extra/gtkhtml:3.14 )
	mozembed? ( >=www-client/firefox-1.5.0 )
	spell? ( >=app-text/gtkspell-2.0.0 )"
DEPEND="${RDEPEND}
	>=dev-util/pkgconfig-0.9"

src_unpack() {
	unpack ${P}.tar.gz
	for slot in $(php_get_slots) ; do
		cp -r "${S}" "${WORKDIR}/${slot}"
	done

	cd "${WORKDIR}"
	for lang in ${LANGS} ; do
		if use doc && use linguas_${lang} ; then
			mkdir ${lang}
			pushd ${lang} >/dev/null
			unpack ${MYDOC_PN}-${MYDOC_PV}_${lang}.tar.bz2
			popd >/dev/null
		fi
	done
}

src_prepare() {
	for slot in $(php_get_slots) ; do
		php_init_slot_env ${slot}

		# we already check for CLI and built-in check creates trouble
		# on suhosin-based installations, so we remove it
		epatch "${FILESDIR}"/${PN}-2.0.0-no-cli-check.patch

		# depends on newer gtkhtml
		epatch "${FILESDIR}"/${PN}-2.0.1-gtkhtml314.patch

		# see bug 232538 for details:
		# this is needed so that autoconf can find the m4 gtk files (non-standard
		# location)
		export AT_M4DIR="${WORKDIR}/${slot}"
		# phpize will invoke autoconf/autoheader (which will fail); we are replacing
		# these calls with dummies as we call eautoreconf shortly afterwards
		# anyway
		export PHP_AUTOCONF="true"
		export PHP_AUTOHEADER="true"
		php-ext-source-r2_phpize
	done
}

src_configure() {
	my_conf="--without-extra \
		$(use_with gtkhtml html) \
		$(use_with libsexy) \
		$(use_with mozembed) \
		$(use_with spell) \
		$(use_enable debug) \
		$(use_enable scintilla) \
		--without-sourceview \
		$(use glade || echo '--without-libglade')"
		php-ext-source-r2_src_configure
}

src_compile() {
	# call virtualmake to setup an virtual x environment
	export maketype="php-ext-source-r2_src_compile"
	virtualmake
}

src_install() {
	php-ext-source-r2_src_install

	if use doc; then
		for lang in ${LANGS} ; do
			if use linguas_${lang} ; then
				ebegin "Installing ${lang} manual, will take a while"
				insinto /usr/share/doc/${CATEGORY}/${PF}/manual-${lang}
				doins -r "${WORKDIR}"/${lang}/html/*
				eend $?
			fi
		done
	fi

	if use examples	; then
		insinto /usr/share/doc/${CATEGORY}/${PF}/examples
		doins -r "${S}"/demos/*
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-php5/php-gtk: ChangeLog php-gtk-2.0.1-r4.ebuild
@ 2011-10-27  6:20 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2011-10-27  6:20 UTC (permalink / raw
  To: gentoo-commits

tetromino    11/10/27 06:20:15

  Modified:             ChangeLog php-gtk-2.0.1-r4.ebuild
  Log:
  Slot gtkspell dependency to 2 in preparation for gtkspell-3.
  
  (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)

Revision  Changes    Path
1.25                 dev-php5/php-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	18 Feb 2011 12:22:41 -0000	1.24
+++ ChangeLog	27 Oct 2011 06:20:15 -0000	1.25
@@ -1,6 +1,10 @@
 # ChangeLog for dev-php5/php-gtk
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/ChangeLog,v 1.24 2011/02/18 12:22:41 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/ChangeLog,v 1.25 2011/10/27 06:20:15 tetromino Exp $
+
+  27 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+  php-gtk-2.0.1-r4.ebuild:
+  Slot gtkspell dependency to 2 in preparation for gtkspell-3.
 
   18 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org>
   -php-gtk-2.0.1-r2.ebuild, -php-gtk-2.0.1-r3.ebuild:



1.4                  dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild?r1=1.3&r2=1.4

Index: php-gtk-2.0.1-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- php-gtk-2.0.1-r4.ebuild	27 Mar 2011 22:50:26 -0000	1.3
+++ php-gtk-2.0.1-r4.ebuild	27 Oct 2011 06:20:15 -0000	1.4
@@ -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/php-gtk/php-gtk-2.0.1-r4.ebuild,v 1.3 2011/03/27 22:50:26 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/php-gtk/php-gtk-2.0.1-r4.ebuild,v 1.4 2011/10/27 06:20:15 tetromino Exp $
 
 EAPI="2"
 
@@ -43,7 +43,7 @@
 	libsexy? ( >=x11-libs/libsexy-0.1.10 )
 	gtkhtml? ( gnome-extra/gtkhtml:3.14 )
 	mozembed? ( >=www-client/firefox-1.5.0 )
-	spell? ( >=app-text/gtkspell-2.0.0 )"
+	spell? ( >=app-text/gtkspell-2.0.0:2 )"
 DEPEND="${RDEPEND}
 	>=dev-util/pkgconfig-0.9"
 






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

end of thread, other threads:[~2011-10-27  6:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-04 17:50 [gentoo-commits] gentoo-x86 commit in dev-php5/php-gtk: ChangeLog php-gtk-2.0.1-r4.ebuild Matti Bickel (mabi)
  -- strict thread matches above, loose matches on Subject: below --
2011-10-27  6:20 Alexandre Rostovtsev (tetromino)

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