summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Bickel <mabi@gentoo.org>2014-01-08 17:26:13 +0000
committerMatti Bickel <mabi@gentoo.org>2014-01-08 17:26:13 +0000
commitbb96104dca0723941bf07dfe6c9b1a50982b142d (patch)
tree0c7f84fd2046033db8acc4c4c1b06fa0f3d4fe66 /dev-php/smarty
parentversion bump (diff)
downloadgentoo-2-bb96104dca0723941bf07dfe6c9b1a50982b142d.tar.gz
gentoo-2-bb96104dca0723941bf07dfe6c9b1a50982b142d.tar.bz2
gentoo-2-bb96104dca0723941bf07dfe6c9b1a50982b142d.zip
cleanup
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xDDF971F118EEA5E6!)
Diffstat (limited to 'dev-php/smarty')
-rw-r--r--dev-php/smarty/ChangeLog5
-rw-r--r--dev-php/smarty/smarty-3.1.8.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-php/smarty/ChangeLog b/dev-php/smarty/ChangeLog
index 7a7ca4250862..e4192bdfbcec 100644
--- a/dev-php/smarty/ChangeLog
+++ b/dev-php/smarty/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-php/smarty
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.133 2014/01/08 17:26:13 mabi Exp $
+
+ 08 Jan 2014; Matti Bickel <mabi@gentoo.org> -smarty-3.1.8.ebuild:
+ cleanup
*smarty-3.1.16 (08 Jan 2014)
diff --git a/dev-php/smarty/smarty-3.1.8.ebuild b/dev-php/smarty/smarty-3.1.8.ebuild
deleted file mode 100644
index 061084cbe5aa..000000000000
--- a/dev-php/smarty/smarty-3.1.8.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-3.1.8.ebuild,v 1.1 2012/02/22 19:21:11 mabi Exp $
-
-EAPI=4
-
-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
- doc? ( http://www.smarty.net/files/docs/manual-en-${PV}.zip )"
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="doc"
-
-DEPEND="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)."
- 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!"
-}