summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjarke Istrup Pedersen <gurligebis@gentoo.org>2010-03-02 22:30:42 +0000
committerBjarke Istrup Pedersen <gurligebis@gentoo.org>2010-03-02 22:30:42 +0000
commitf59e693a41e8e2e0164da539fb7800135e8efa25 (patch)
treeb451b2e5867a6659c6bb75457023a30a3e5d652f /dev-php5/ZendFramework
parentAppend -nopie to LDFLAGS wrt #93862 and only filter -fPIC -fPIE on x86. (diff)
downloadgentoo-2-f59e693a41e8e2e0164da539fb7800135e8efa25.tar.gz
gentoo-2-f59e693a41e8e2e0164da539fb7800135e8efa25.tar.bz2
gentoo-2-f59e693a41e8e2e0164da539fb7800135e8efa25.zip
Cleaning up and fixing spelling error
(Portage version: 2.2_rc63/cvs/Linux i686)
Diffstat (limited to 'dev-php5/ZendFramework')
-rw-r--r--dev-php5/ZendFramework/ChangeLog18
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.10.0.ebuild79
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.10.1.ebuild79
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild4
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild6
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild6
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.9.2-r1.ebuild74
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.9.2.ebuild82
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.9.6.ebuild79
-rw-r--r--dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild4
10 files changed, 27 insertions, 404 deletions
diff --git a/dev-php5/ZendFramework/ChangeLog b/dev-php5/ZendFramework/ChangeLog
index bc05117f61bc..398beb74d16e 100644
--- a/dev-php5/ZendFramework/ChangeLog
+++ b/dev-php5/ZendFramework/ChangeLog
@@ -1,6 +1,22 @@
# ChangeLog for dev-php5/ZendFramework
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v 1.64 2010/03/02 19:15:40 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ChangeLog,v 1.65 2010/03/02 22:30:42 gurligebis Exp $
+
+ 02 Mar 2010; Bjarke Istrup Pedersen <gurligebis@gentoo.org>
+ ZendFramework-1.7.5.ebuild, ZendFramework-1.8.3.ebuild,
+ -ZendFramework-1.9.2.ebuild, -ZendFramework-1.9.2-r1.ebuild,
+ -ZendFramework-1.9.6.ebuild, ZendFramework-1.9.7.ebuild,
+ -ZendFramework-1.10.0.ebuild, -ZendFramework-1.10.1.ebuild,
+ ZendFramework-1.10.2.ebuild:
+ Removing old versions and fixing spelling error - bug #284314
+
+ 02 Mar 2010; Bjarke Istrup Pedersen <gurligebis@gentoo.org>
+ ZendFramework-1.7.5.ebuild, ZendFramework-1.8.3.ebuild,
+ ZendFramework-1.9.2.ebuild, ZendFramework-1.9.2-r1.ebuild,
+ ZendFramework-1.9.6.ebuild, ZendFramework-1.9.7.ebuild,
+ ZendFramework-1.10.0.ebuild, ZendFramework-1.10.1.ebuild,
+ ZendFramework-1.10.2.ebuild:
+ Fixing spelling error - bug #284314
*ZendFramework-1.10.2 (02 Mar 2010)
diff --git a/dev-php5/ZendFramework/ZendFramework-1.10.0.ebuild b/dev-php5/ZendFramework/ZendFramework-1.10.0.ebuild
deleted file mode 100644
index 6a4e6944836b..000000000000
--- a/dev-php5/ZendFramework/ZendFramework-1.10.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.10.0.ebuild,v 1.1 2010/02/03 01:41:28 yngwin Exp $
-
-EAPI="2"
-
-PHP_LIB_NAME="Zend"
-
-inherit php-lib-r1
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
-HOMEPAGE="http://framework.zend.com/"
-SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
- minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
- doc? (
- http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
- http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc examples minimal cli"
-
-DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )"
-RDEPEND="${DEPEND}"
-need_php_by_category
-
-src_prepare() {
- if use minimal ; then
- S="${WORKDIR}/${P}-minimal"
- if use doc ; then
- mv "${WORKDIR}/${P}/documentation" "${S}"
- fi
- fi
-}
-
-src_install() {
- if use cli ; then
- insinto /usr/bin
- doins bin/zf.php
- dobin bin/zf.sh
- dosym /usr/bin/zf.sh /usr/bin/zf
- fi
- php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
-
- if ! use minimal ; then
- insinto /usr/share/php5
- doins -r externals/dojo
- fi
-
- if use examples ; then
- insinto /usr/share/doc/${PF}
-
- if ! use minimal ; then
- doins -r demos
- fi
- fi
-
- dodoc README.txt
- if use doc ; then
- dohtml -r documentation/*
- fi
-}
-
-pkg_postinst() {
- elog "For more info, please take a look at the manual at:"
- elog "http://framework.zend.com/manual"
- elog ""
-
- if use minimal; then
- elog "You have installed the minimal version of ZendFramework,"
- elog "so the Dojo toolkit, demos and tests have not been installed."
- else
- elog "You have installed the full version of ZendFramework, which"
- elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
- elog "minimal USE flag."
- fi
-}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.10.1.ebuild b/dev-php5/ZendFramework/ZendFramework-1.10.1.ebuild
deleted file mode 100644
index 949def456408..000000000000
--- a/dev-php5/ZendFramework/ZendFramework-1.10.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.10.1.ebuild,v 1.1 2010/02/12 00:05:32 yngwin Exp $
-
-EAPI="2"
-
-PHP_LIB_NAME="Zend"
-
-inherit php-lib-r1
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
-HOMEPAGE="http://framework.zend.com/"
-SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
- minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
- doc? (
- http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
- http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc examples minimal cli"
-
-DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )"
-RDEPEND="${DEPEND}"
-need_php_by_category
-
-src_prepare() {
- if use minimal ; then
- S="${WORKDIR}/${P}-minimal"
- if use doc ; then
- mv "${WORKDIR}/${P}/documentation" "${S}"
- fi
- fi
-}
-
-src_install() {
- if use cli ; then
- insinto /usr/bin
- doins bin/zf.php
- dobin bin/zf.sh
- dosym /usr/bin/zf.sh /usr/bin/zf
- fi
- php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
-
- if ! use minimal ; then
- insinto /usr/share/php5
- doins -r externals/dojo
- fi
-
- if use examples ; then
- insinto /usr/share/doc/${PF}
-
- if ! use minimal ; then
- doins -r demos
- fi
- fi
-
- dodoc README.txt
- if use doc ; then
- dohtml -r documentation/*
- fi
-}
-
-pkg_postinst() {
- elog "For more info, please take a look at the manual at:"
- elog "http://framework.zend.com/manual"
- elog ""
-
- if use minimal; then
- elog "You have installed the minimal version of ZendFramework,"
- elog "so the Dojo toolkit, demos and tests have not been installed."
- else
- elog "You have installed the full version of ZendFramework, which"
- elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
- elog "minimal USE flag."
- fi
-}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild b/dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild
index 210bfa46ad04..db02a4059ae1 100644
--- a/dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild
+++ b/dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild,v 1.1 2010/03/02 19:15:40 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.10.2.ebuild,v 1.2 2010/03/02 22:30:42 gurligebis Exp $
EAPI="2"
@@ -73,7 +73,7 @@ pkg_postinst() {
else
elog "You have installed the full version of ZendFramework, which"
elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
+ elog "To install ZendFramework without these, enable the"
elog "minimal USE flag."
fi
}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild b/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild
index aa3c77c13435..062520acfb4c 100644
--- a/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild
+++ b/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild,v 1.7 2009/03/07 11:47:31 gurligebis Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.7.5.ebuild,v 1.8 2010/03/02 22:30:42 gurligebis Exp $
PHP_LIB_NAME="Zend"
@@ -61,7 +61,7 @@ pkg_postinst() {
else
elog "You have installed the full version of ZendFramework, which"
elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
+ elog "To install ZendFramework without these, enable the"
elog "minimal USE flag."
fi
}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild b/dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild
index a48d1f4da7fd..21b03a2e3ce3 100644
--- a/dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild
+++ b/dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild,v 1.4 2009/07/19 11:52:28 gurligebis Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.8.3.ebuild,v 1.5 2010/03/02 22:30:42 gurligebis Exp $
PHP_LIB_NAME="Zend"
@@ -76,7 +76,7 @@ pkg_postinst() {
else
elog "You have installed the full version of ZendFramework, which"
elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
+ elog "To install ZendFramework without these, enable the"
elog "minimal USE flag."
fi
}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.9.2-r1.ebuild b/dev-php5/ZendFramework/ZendFramework-1.9.2-r1.ebuild
deleted file mode 100644
index f4f905734281..000000000000
--- a/dev-php5/ZendFramework/ZendFramework-1.9.2-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.9.2-r1.ebuild,v 1.1 2009/09/21 17:18:45 patrick Exp $
-
-EAPI="2"
-
-PHP_LIB_NAME="Zend"
-
-inherit php-lib-r1
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
-HOMEPAGE="http://framework.zend.com/"
-SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
- minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
- doc? (
- http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
- http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc examples minimal cli"
-
-DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )"
-RDEPEND="${DEPEND}"
-need_php_by_category
-
-src_prepare() {
- if use minimal ; then
- S="${WORKDIR}/${P}-minimal"
- if use doc ; then
- mv "${WORKDIR}/${P}/documentation" "${S}"
- fi
- fi
-}
-
-src_install() {
- if use cli ; then
- insinto /usr/bin
- doins bin/zf.php
- dobin bin/zf.sh
- dosym /usr/bin/zf.sh /usr/bin/zf
- fi
- php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
-
- if use examples ; then
- insinto /usr/share/doc/${PF}
-
- if ! use minimal ; then
- doins -r demos
- fi
- fi
-
- dodoc README.txt
- if use doc ; then
- dohtml -r documentation/*
- fi
-}
-
-pkg_postinst() {
- elog "For more info, please take a look at the manual at:"
- elog "http://framework.zend.com/manual"
- elog ""
-
- if use minimal; then
- elog "You have installed the minimal version of ZendFramework,"
- elog "so the Dojo toolkit, demos and tests have not been installed."
- else
- elog "You have installed the full version of ZendFramework, which"
- elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
- elog "minimal USE flag."
- fi
-}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.9.2.ebuild b/dev-php5/ZendFramework/ZendFramework-1.9.2.ebuild
deleted file mode 100644
index 3c4e575a74d3..000000000000
--- a/dev-php5/ZendFramework/ZendFramework-1.9.2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.9.2.ebuild,v 1.1 2009/09/19 20:59:07 gurligebis Exp $
-
-PHP_LIB_NAME="Zend"
-
-inherit php-lib-r1
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
-HOMEPAGE="http://framework.zend.com/"
-SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
- minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
- doc? (
- http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
- http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc examples minimal cli"
-
-DEPEND=""
-RDEPEND=""
-need_php_by_category
-
-pkg_setup() {
- if use cli ; then
- require_php_with_use simplexml tokenizer
- fi
-}
-
-src_unpack() {
- unpack ${A}
-
- if use minimal ; then
- S="${WORKDIR}/${P}-minimal"
- if use doc ; then
- mv "${WORKDIR}/${P}/documentation" "${S}"
- fi
- fi
-
- cd "${S}"
-}
-
-src_install() {
- if use cli ; then
- insinto /usr/bin
- doins bin/zf.php
- dobin bin/zf.sh
- dosym /usr/bin/zf.sh /usr/bin/zf
- fi
- php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
-
- if use examples ; then
- insinto /usr/share/doc/${PF}
-
- if ! use minimal ; then
- doins -r demos
- fi
- fi
-
- dodoc README.txt
- if use doc ; then
- dohtml -r documentation/*
- fi
-}
-
-pkg_postinst() {
- elog "For more info, please take a look at the manual at:"
- elog "http://framework.zend.com/manual"
- elog ""
-
- if use minimal; then
- elog "You have installed the minimal version of ZendFramework,"
- elog "so the Dojo toolkit, demos and tests have not been installed."
- else
- elog "You have installed the full version of ZendFramework, which"
- elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
- elog "minimal USE flag."
- fi
-}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.9.6.ebuild b/dev-php5/ZendFramework/ZendFramework-1.9.6.ebuild
deleted file mode 100644
index e48f4ea0675b..000000000000
--- a/dev-php5/ZendFramework/ZendFramework-1.9.6.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.9.6.ebuild,v 1.1 2009/12/14 12:35:44 gurligebis Exp $
-
-EAPI="2"
-
-PHP_LIB_NAME="Zend"
-
-inherit php-lib-r1
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
-HOMEPAGE="http://framework.zend.com/"
-SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
- minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
- doc? (
- http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
- http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc examples minimal cli"
-
-DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )"
-RDEPEND="${DEPEND}"
-need_php_by_category
-
-src_prepare() {
- if use minimal ; then
- S="${WORKDIR}/${P}-minimal"
- if use doc ; then
- mv "${WORKDIR}/${P}/documentation" "${S}"
- fi
- fi
-}
-
-src_install() {
- if use cli ; then
- insinto /usr/bin
- doins bin/zf.php
- dobin bin/zf.sh
- dosym /usr/bin/zf.sh /usr/bin/zf
- fi
- php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
-
- if ! use minimal ; then
- insinto /usr/share/php5
- doins -r externals/dojo
- fi
-
- if use examples ; then
- insinto /usr/share/doc/${PF}
-
- if ! use minimal ; then
- doins -r demos
- fi
- fi
-
- dodoc README.txt
- if use doc ; then
- dohtml -r documentation/*
- fi
-}
-
-pkg_postinst() {
- elog "For more info, please take a look at the manual at:"
- elog "http://framework.zend.com/manual"
- elog ""
-
- if use minimal; then
- elog "You have installed the minimal version of ZendFramework,"
- elog "so the Dojo toolkit, demos and tests have not been installed."
- else
- elog "You have installed the full version of ZendFramework, which"
- elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
- elog "minimal USE flag."
- fi
-}
diff --git a/dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild b/dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild
index f550f5aee6a4..29cbd85958c8 100644
--- a/dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild
+++ b/dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild,v 1.1 2010/01/20 01:24:42 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/ZendFramework/ZendFramework-1.9.7.ebuild,v 1.2 2010/03/02 22:30:42 gurligebis Exp $
EAPI="2"
@@ -73,7 +73,7 @@ pkg_postinst() {
else
elog "You have installed the full version of ZendFramework, which"
elog "includes the Dojo toolkit, demos and tests."
- elog "To install ZendFramework without there, enable the"
+ elog "To install ZendFramework without these, enable the"
elog "minimal USE flag."
fi
}