diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-02-26 16:35:53 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-02-26 16:35:53 +0000 |
commit | 1e025e305c2e32285d5925e84f3f384de1b670e8 (patch) | |
tree | 4c80c497dc2e9bdf6c47ff919ed06a34ebb5c532 /dev-php/smarty | |
parent | Version bump, import from the php overlay (diff) | |
download | gentoo-2-1e025e305c2e32285d5925e84f3f384de1b670e8.tar.gz gentoo-2-1e025e305c2e32285d5925e84f3f384de1b670e8.tar.bz2 gentoo-2-1e025e305c2e32285d5925e84f3f384de1b670e8.zip |
Version bump, import from the php overlay
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-php/smarty')
-rw-r--r-- | dev-php/smarty/ChangeLog | 13 | ||||
-rw-r--r-- | dev-php/smarty/smarty-2.6.19.ebuild | 42 |
2 files changed, 53 insertions, 2 deletions
diff --git a/dev-php/smarty/ChangeLog b/dev-php/smarty/ChangeLog index 3de29871da79..57de83dc5420 100644 --- a/dev-php/smarty/ChangeLog +++ b/dev-php/smarty/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for dev-php/smarty -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.74 2007/11/02 03:55:10 beandog Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.75 2008/02/26 16:35:53 armin76 Exp $ + +*smarty-2.6.19 (26 Feb 2008) + + 26 Feb 2008; Raúl Porcel <armin76@gentoo.org> +smarty-2.6.19.ebuild: + Version bump, import from the php overlay + + 19 Feb 2008; Jakub Moc <jakub@gentoo.org> + +smarty-2.6.19.ebuild: + Version bump - bugfix release 02 Nov 2007; Steve Dibb <beandog@gentoo.org> smarty-2.6.18.ebuild: amd64 stable, bug 197314 diff --git a/dev-php/smarty/smarty-2.6.19.ebuild b/dev-php/smarty/smarty-2.6.19.ebuild new file mode 100644 index 000000000000..794dd3fe13c5 --- /dev/null +++ b/dev-php/smarty/smarty-2.6.19.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-2.6.19.ebuild,v 1.1 2008/02/26 16:35:53 armin76 Exp $ + +inherit php-lib-r1 + +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +MY_P="Smarty-${PV}" + +DESCRIPTION="A template engine for PHP." +HOMEPAGE="http://smarty.php.net/" +SRC_URI="http://smarty.php.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 apache-php[45]," + elog "cgi-php[45] or cli-php[45])." + 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!" +} |