summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2018-04-08 20:20:48 -0400
committerBrian Evans <grknight@gentoo.org>2018-04-08 20:20:48 -0400
commit72f8743680dcfbb275eb300a8ce46d577d9f035c (patch)
tree79e9fe3ed9d653ed605ba64a5f332e62f1366280 /dev-php
parentdev-libs/openssl-1.0.2o: alpha stable, bug 651730 (diff)
downloadgentoo-72f8743680dcfbb275eb300a8ce46d577d9f035c.tar.gz
gentoo-72f8743680dcfbb275eb300a8ce46d577d9f035c.tar.bz2
gentoo-72f8743680dcfbb275eb300a8ce46d577d9f035c.zip
dev-php/ZendFramework: Package removal wrt bug 604182
Bug: https://bugs.gentoo.org/604182
Diffstat (limited to 'dev-php')
-rw-r--r--dev-php/ZendFramework/Manifest4
-rw-r--r--dev-php/ZendFramework/ZendFramework-1.12.9.ebuild79
-rw-r--r--dev-php/ZendFramework/metadata.xml14
3 files changed, 0 insertions, 97 deletions
diff --git a/dev-php/ZendFramework/Manifest b/dev-php/ZendFramework/Manifest
deleted file mode 100644
index f7421c7de2bd..000000000000
--- a/dev-php/ZendFramework/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST ZendFramework-1.12.9-apidoc.tar.gz 11296608 BLAKE2B d6594f38edf15e109d2849ac6bacfa03fd5ee98307dc47ce270b0fed5b6c668df673d1be3aa313b91d7786a935407684251dd20c767a782712f5cf57ab382f5c SHA512 cd14207e0f5a2091c20ab5b27c9fa63af3313756d60af98eaf17dbf4546909055560cc969d8358e4c84781c02c82ff30009c3cbe589fa5ad798cb21522fe896f
-DIST ZendFramework-1.12.9-manual-en.tar.gz 3475776 BLAKE2B a742d6a9325a82d4ab392515575901a013af6496176a524c1b8d11c6ea8c046cb6bef489d3d51c9f11af4d28375eaa31b2f251c254bec90995b6d94ce45d065f SHA512 58a8e3496d75c9757988854ab767bb86314e95a1eac9c02d61123ee8aeacf4f26815bf277d2c73c47b39b6ed242627ddc3125f6652f9219f7ded61cff5913407
-DIST ZendFramework-1.12.9-minimal.tar.gz 8451777 BLAKE2B cb006ffa6d712d85970e2b5ee4838dea896e7630454e67b9a297b40161abc3a40a1f7c51990921f693a153cbed9e151c890b4641da81e74528abf446ffa53e30 SHA512 5cc80773a6d2a9a0c9403c97c13ebec5fa3f119e5dd52a619ecfc967237e03ea0c919f35fb4c5594f9f001468161fd2d1d9dcefaa858713e8a0d6f3d99c2f338
-DIST ZendFramework-1.12.9.tar.gz 27343626 BLAKE2B 5a86ac4a24a4ef7c3b813c42ed4b8c7642da3d8b2e36ca6dc11144431e692faa49302913861649642611f58a211e7425fa270715ff330dc9698ac4470a7b3427 SHA512 591fd92b80fcbae5dfbd3b2aa3678ae7c307b20cb62f91d1f45df821bf2d0876d0d006a0077dd217fe192914608a816afbe09f90f4fa991d97a64558d76be389
diff --git a/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild b/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild
deleted file mode 100644
index b1cfaa2c5c67..000000000000
--- a/dev-php/ZendFramework/ZendFramework-1.12.9.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PHP_LIB_NAME="Zend"
-
-inherit php-lib-r1
-
-KEYWORDS="amd64 hppa ~ppc x86"
-
-DESCRIPTION="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="cli doc examples minimal"
-
-DEPEND="cli? ( dev-lang/php:*[simplexml,tokenizer] )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- default
- if use minimal ; then
- mv "${WORKDIR}/${P}-minimal" "${S}" || die
- fi
-}
-
-src_prepare() {
- if use minimal ; then
- 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/php
- doins -r externals/dojo
- if use examples ; then
- insinto /usr/share/doc/${PF}
- doins -r demos
- fi
- fi
-
- dodoc README.md
- 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 these, enable the"
- elog "minimal USE flag."
- fi
-}
diff --git a/dev-php/ZendFramework/metadata.xml b/dev-php/ZendFramework/metadata.xml
deleted file mode 100644
index 101bef2fc303..000000000000
--- a/dev-php/ZendFramework/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>php-bugs@gentoo.org</email>
- <name>PHP</name>
- </maintainer>
- <use>
- <flag name="cli">Enables the CLI</flag>
- <flag name="doc">Installs the documentation</flag>
- <flag name="examples">Installs the examples</flag>
- <flag name="minimal">Installs the minimal version without Dojo toolkit, tests and demos</flag>
- </use>
-</pkgmetadata>