diff options
author | Chris Reffett <creffett@gentoo.org> | 2013-12-09 01:53:52 +0000 |
---|---|---|
committer | Chris Reffett <creffett@gentoo.org> | 2013-12-09 01:53:52 +0000 |
commit | f19c197f0ab600cbbe02230f2a40b072a00ddb6e (patch) | |
tree | de6af574fa379d60f7fb7b23a4226643bbe6df99 /dev-php | |
parent | Restore pexpect dep, but exclude pypy. (diff) | |
download | gentoo-2-f19c197f0ab600cbbe02230f2a40b072a00ddb6e.tar.gz gentoo-2-f19c197f0ab600cbbe02230f2a40b072a00ddb6e.tar.bz2 gentoo-2-f19c197f0ab600cbbe02230f2a40b072a00ddb6e.zip |
cleanup wrt bug 356615.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 42618354)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/smarty/ChangeLog | 6 | ||||
-rw-r--r-- | dev-php/smarty/smarty-2.6.24.ebuild | 42 | ||||
-rw-r--r-- | dev-php/smarty/smarty-2.6.27.ebuild | 40 |
3 files changed, 5 insertions, 83 deletions
diff --git a/dev-php/smarty/ChangeLog b/dev-php/smarty/ChangeLog index d702d7b2a046..09e8ac9c14af 100644 --- a/dev-php/smarty/ChangeLog +++ b/dev-php/smarty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php/smarty # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.129 2013/11/03 11:24:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.130 2013/12/09 01:53:52 creffett Exp $ + + 09 Dec 2013; Chris Reffett <creffett@gentoo.org> -smarty-2.6.24.ebuild, + -smarty-2.6.27.ebuild: + cleanup wrt bug 356615. 03 Nov 2013; Agostino Sarubbo <ago@gentoo.org> smarty-2.6.28.ebuild: Stable for sparc, wrt bug #356615 diff --git a/dev-php/smarty/smarty-2.6.24.ebuild b/dev-php/smarty/smarty-2.6.24.ebuild deleted file mode 100644 index a5b48286d1ee..000000000000 --- a/dev-php/smarty/smarty-2.6.24.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-2.6.24.ebuild,v 1.8 2011/02/12 17:38:46 ssuominen Exp $ - -inherit php-lib-r1 eutils - -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" - -MY_P="Smarty-${PV}" - -DESCRIPTION="A template engine for PHP." -HOMEPAGE="http://www.smarty.net/" -SRC_URI="http://www.smarty.net/distributions/${MY_P}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="doc" - -DEPEND="" -RDEPEND="" -PDEPEND="doc? ( dev-php/smarty-docs )" - -S="${WORKDIR}/${MY_P}" - -need_php_by_category - -src_install() { - dodoc-php BUGS ChangeLog FAQ NEWS QUICK_START README RELEASE_NOTES TODO - - php-lib-r1_src_install ./libs `find ./libs -type f -print | sed -e "s|./libs||g"` -} - -pkg_postinst() { - elog "${PHP_LIB_NAME} has been installed in /usr/share/php/${PHP_LIB_NAME}/." - elog "To use it in your scripts, either" - elog "1. define('SMARTY_DIR', \"/usr/share/php/${PHP_LIB_NAME}/\") in your scripts, or" - elog "2. add '/usr/share/php/${PHP_LIB_NAME}/' to the 'include_path' variable in your" - elog "php.ini file under /etc/php/SAPI (where SAPI is one of apache2-php5," - elog "cgi-php5 or cli-php5)." - elog - elog "If you're upgrading from a previous version make sure to clear out your" - elog "templates_c and cache directories as some include paths have changed!" -} diff --git a/dev-php/smarty/smarty-2.6.27.ebuild b/dev-php/smarty/smarty-2.6.27.ebuild deleted file mode 100644 index 0c9fd178a886..000000000000 --- a/dev-php/smarty/smarty-2.6.27.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-2.6.27.ebuild,v 1.1 2013/03/30 11:38:56 mabi Exp $ - -EAPI=4 - -inherit eutils - -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -MY_P="Smarty-${PV}" - -DESCRIPTION="A template engine for PHP." -HOMEPAGE="http://www.smarty.net/" -SRC_URI="http://www.smarty.net/files/${MY_P}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="doc" - -DEPEND="" -RDEPEND="" -PDEPEND="doc? ( =dev-php/smarty-docs-2* )" - -S="${WORKDIR}/${MY_P}" - -DOCS="BUGS ChangeLog FAQ NEWS QUICK_START README RELEASE_NOTES TODO" - -src_install() { - insinto "/usr/share/php/${PN}" - doins -r libs/* - dodoc ${DOCS} -} - -pkg_postinst() { - elog "${PN} has been installed in /usr/share/php/${PN}/." - elog "To use it in your scripts, either" - elog "1. define('SMARTY_DIR', \"/usr/share/php/${PN}/\") in your scripts, or" - elog "2. add '/usr/share/php/${PN}/' to the 'include_path' variable in your" - elog "php.ini file under /etc/php/*-php5.x" -} |