diff options
author | 2014-01-08 17:24:28 +0000 | |
---|---|---|
committer | 2014-01-08 17:24:28 +0000 | |
commit | a18651cbe7e2654aeca82ac55cc6301b1874f236 (patch) | |
tree | b22faa684de787f1e5f15551646a6dbb37eef14d /dev-php | |
parent | Remove pointless crap (bug #497186). (diff) | |
download | gentoo-2-a18651cbe7e2654aeca82ac55cc6301b1874f236.tar.gz gentoo-2-a18651cbe7e2654aeca82ac55cc6301b1874f236.tar.bz2 gentoo-2-a18651cbe7e2654aeca82ac55cc6301b1874f236.zip |
version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xDDF971F118EEA5E6!)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/smarty/ChangeLog | 9 | ||||
-rw-r--r-- | dev-php/smarty/smarty-3.1.16.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/dev-php/smarty/ChangeLog b/dev-php/smarty/ChangeLog index a65be33d2e04..7a7ca4250862 100644 --- a/dev-php/smarty/ChangeLog +++ b/dev-php/smarty/ChangeLog @@ -1,6 +1,11 @@ # 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.131 2013/12/26 19:20:18 zlogene Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.132 2014/01/08 17:24:28 mabi Exp $ + +*smarty-3.1.16 (08 Jan 2014) + + 08 Jan 2014; Matti Bickel <mabi@gentoo.org> +smarty-3.1.16.ebuild: + version bump 26 Dec 2013; Mikle Kolyada <zlogene@gentoo.org> smarty-3.1.12.ebuild: x86 stable wrt bug #435618 diff --git a/dev-php/smarty/smarty-3.1.16.ebuild b/dev-php/smarty/smarty-3.1.16.ebuild new file mode 100644 index 000000000000..3bc91e41a6e4 --- /dev/null +++ b/dev-php/smarty/smarty-3.1.16.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-3.1.16.ebuild,v 1.1 2014/01/08 17:24:28 mabi Exp $ + +EAPI=5 + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +MY_P="Smarty-${PV}" +DOC_PV="3.1.8" + +DESCRIPTION="A template engine for PHP." +HOMEPAGE="http://www.smarty.net/" +SRC_URI="http://www.smarty.net/files/${MY_P}.tar.gz + doc? ( http://www.smarty.net/files/docs/manual-en-${DOC_PV}.zip )" +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="doc" + +DEPEND="doc? ( app-arch/unzip )" +RDEPEND="dev-lang/php" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto "/usr/share/php/${PN}" + doins -r libs/* + + dodoc *.txt README + use doc && dohtml -r "${WORKDIR}/manual-en/"* +} + +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/SAPI (where SAPI is e.g apache2-php5.3," + elog "cgi-php5.3, etc)." +} |