diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2011-08-21 13:49:34 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2011-08-21 13:49:34 +0000 |
commit | 9037eab2370e1630cd6c74ee39c6aa2a4375bdae (patch) | |
tree | 1c728adfb378c900466dc3a197784ee72fb2baea /dev-libs | |
parent | ppc stable #379055 (diff) | |
download | gentoo-2-9037eab2370e1630cd6c74ee39c6aa2a4375bdae.tar.gz gentoo-2-9037eab2370e1630cd6c74ee39c6aa2a4375bdae.tar.bz2 gentoo-2-9037eab2370e1630cd6c74ee39c6aa2a4375bdae.zip |
Non-maintainer commit: removing older ebuilds that depend on dev-lang/php:5 (bug 363809)
(Portage version: 2.1.10.6/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/ossp-uuid/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/ossp-uuid/ossp-uuid-1.6.1.ebuild | 82 | ||||
-rw-r--r-- | dev-libs/ossp-uuid/ossp-uuid-1.6.2.ebuild | 82 |
3 files changed, 6 insertions, 165 deletions
diff --git a/dev-libs/ossp-uuid/ChangeLog b/dev-libs/ossp-uuid/ChangeLog index 35bd49a5768f..bc22b39533b9 100644 --- a/dev-libs/ossp-uuid/ChangeLog +++ b/dev-libs/ossp-uuid/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/ossp-uuid # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ossp-uuid/ChangeLog,v 1.27 2011/08/20 18:42:21 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ossp-uuid/ChangeLog,v 1.28 2011/08/21 13:49:33 olemarkus Exp $ + + 21 Aug 2011; Ole Markus With <olemarkus@gentoo.org> -ossp-uuid-1.6.1.ebuild, + -ossp-uuid-1.6.2.ebuild: + Non-maintainer commit: removing older ebuilds that depend on dev-lang/php:5 + (bug 363809) 20 Aug 2011; Jeroen Roovers <jer@gentoo.org> ossp-uuid-1.6.2-r1.ebuild: Stable for HPPA (bug #373357). diff --git a/dev-libs/ossp-uuid/ossp-uuid-1.6.1.ebuild b/dev-libs/ossp-uuid/ossp-uuid-1.6.1.ebuild deleted file mode 100644 index 67290957c69b..000000000000 --- a/dev-libs/ossp-uuid/ossp-uuid-1.6.1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ossp-uuid/ossp-uuid-1.6.1.ebuild,v 1.11 2008/12/24 19:07:15 armin76 Exp $ - -EAPI="1" - -PHP_EXT_NAME="uuid" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -PHP_VERSION="5" - -inherit eutils multilib php-ext-source-r1 depend.php - -MY_P="uuid-${PV}" - -DESCRIPTION="An ISO-C:1999 API and corresponding CLI for the generation of DCE 1.1, ISO/IEC 11578:1996 and RFC 4122 compliant UUID." -HOMEPAGE="http://www.ossp.org/pkg/lib/uuid/" -SRC_URI="ftp://ftp.ossp.org/pkg/lib/uuid/${MY_P}.tar.gz" -LICENSE="as-is" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="cxx php" - -DEPEND="php? ( dev-lang/php:5 )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-gentoo.patch" - - if use php; then - cd php - php-ext-source-r1_phpize - fi -} - -src_compile() { - # Notes: - # * collides with e2fstools libs and includes if not moved around - # * perl-bindings are broken - # * pgsql-bindings need PostgreSQL-sources and are included since PostgreSQL 8.3 - econf \ - --includedir=/usr/include/ossp \ - --with-dce \ - --without-pgsql \ - --without-perl \ - --without-php \ - $(use_with cxx) \ - || die "econf failed" - emake || die "emake failed" - - if use php; then - cd php - php-ext-source-r1_src_compile - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc AUTHORS BINDINGS ChangeLog HISTORY NEWS OVERVIEW PORTING README SEEALSO THANKS TODO USERS - - if use php ; then - cd php - php-ext-source-r1_src_install - insinto /usr/share/php5 - newins uuid.php5 uuid.php - fi - - mv "${D}/usr/$(get_libdir)/pkgconfig"/{,ossp-}uuid.pc - mv "${D}/usr/share/man/man3"/uuid.3{,ossp} - mv "${D}/usr/share/man/man3"/uuid++.3{,ossp} -} - -src_test() { - emake check || die "emake check failed" - # Tests for the php-bindings would be available -} diff --git a/dev-libs/ossp-uuid/ossp-uuid-1.6.2.ebuild b/dev-libs/ossp-uuid/ossp-uuid-1.6.2.ebuild deleted file mode 100644 index 4c9435322268..000000000000 --- a/dev-libs/ossp-uuid/ossp-uuid-1.6.2.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ossp-uuid/ossp-uuid-1.6.2.ebuild,v 1.8 2010/04/25 20:14:06 armin76 Exp $ - -EAPI="1" - -PHP_EXT_NAME="uuid" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -PHP_VERSION="5" - -inherit eutils multilib php-ext-source-r1 depend.php - -MY_P="uuid-${PV}" - -DESCRIPTION="An ISO-C:1999 API and corresponding CLI for the generation of DCE 1.1, ISO/IEC 11578:1996 and RFC 4122 compliant UUID." -HOMEPAGE="http://www.ossp.org/pkg/lib/uuid/" -SRC_URI="ftp://ftp.ossp.org/pkg/lib/uuid/${MY_P}.tar.gz" -LICENSE="as-is" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="+cxx php" - -DEPEND="php? ( dev-lang/php:5 )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-gentoo.patch" - - if use php; then - cd php - php-ext-source-r1_phpize - fi -} - -src_compile() { - # Notes: - # * collides with e2fstools libs and includes if not moved around - # * perl-bindings are broken - # * pgsql-bindings need PostgreSQL-sources and are included since PostgreSQL 8.3 - econf \ - --includedir=/usr/include/ossp \ - --with-dce \ - --without-pgsql \ - --without-perl \ - --without-php \ - $(use_with cxx) \ - || die "econf failed" - emake || die "emake failed" - - if use php; then - cd php - php-ext-source-r1_src_compile - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc AUTHORS BINDINGS ChangeLog HISTORY NEWS OVERVIEW PORTING README SEEALSO THANKS TODO USERS - - if use php ; then - cd php - php-ext-source-r1_src_install - insinto /usr/share/php5 - newins uuid.php5 uuid.php - fi - - mv "${D}/usr/$(get_libdir)/pkgconfig"/{,ossp-}uuid.pc - mv "${D}/usr/share/man/man3"/uuid.3{,ossp} - mv "${D}/usr/share/man/man3"/uuid++.3{,ossp} -} - -src_test() { - emake check || die "emake check failed" - # Tests for the php-bindings would be available -} |