diff options
author | Tom William Payne <twp@gentoo.org> | 2003-12-24 22:34:15 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2003-12-24 22:34:15 +0000 |
commit | 088dda0048721f225b83f6a0158a5bf75124a2cb (patch) | |
tree | 410f848a9c40efa991bc66cf58c69ee1d951ace8 /dev-php/smarty | |
parent | Bug # 36412 (diff) | |
download | historical-088dda0048721f225b83f6a0158a5bf75124a2cb.tar.gz historical-088dda0048721f225b83f6a0158a5bf75124a2cb.tar.bz2 historical-088dda0048721f225b83f6a0158a5bf75124a2cb.zip |
Bug # 36412
Diffstat (limited to 'dev-php/smarty')
-rw-r--r-- | dev-php/smarty/Manifest | 5 | ||||
-rw-r--r-- | dev-php/smarty/files/digest-smarty-2.6.0-r1 | 1 | ||||
-rw-r--r-- | dev-php/smarty/smarty-2.6.0-r1.ebuild | 27 |
3 files changed, 30 insertions, 3 deletions
diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest index 77c00cc88653..e817f8ee9b91 100644 --- a/dev-php/smarty/Manifest +++ b/dev-php/smarty/Manifest @@ -1,8 +1,7 @@ -MD5 c281568e7ef43d75987fa91d90f79014 ChangeLog 923 +MD5 bc11818cee3a485eb4d52a7b2f0738ed ChangeLog 1080 MD5 d992d28bec4a3bfd72b441145091a58e metadata.xml 244 MD5 f3e8dce6e82be1f635c0d8b50954f629 smarty-2.5.0.ebuild 1000 -MD5 74fa47f6c46af0e50611cfffefdd9585 smarty-2.6.0-r1.ebuild 844 -MD5 81d3a53998f8d021fb7067e1f0558e2a .smarty-2.6.0-r1.ebuild.swp 12288 +MD5 5ecdd03239e918c6d9fc01b19ea01f08 smarty-2.6.0-r1.ebuild 874 MD5 1038be5c753ad8897ebe0391c6e002ff smarty-2.6.0.ebuild 1000 MD5 74ae938ca9097670a89c5f2ff6ad28f8 files/digest-smarty-2.5.0 133 MD5 d682d64693190a83f04b9d51ee9d1bfe files/digest-smarty-2.6.0 133 diff --git a/dev-php/smarty/files/digest-smarty-2.6.0-r1 b/dev-php/smarty/files/digest-smarty-2.6.0-r1 new file mode 100644 index 000000000000..732c54fedfe8 --- /dev/null +++ b/dev-php/smarty/files/digest-smarty-2.6.0-r1 @@ -0,0 +1 @@ +MD5 e7bf2f46c6a188220493f1e12ab55c19 Smarty-2.6.0.tar.gz 120963 diff --git a/dev-php/smarty/smarty-2.6.0-r1.ebuild b/dev-php/smarty/smarty-2.6.0-r1.ebuild new file mode 100644 index 000000000000..5047e3915755 --- /dev/null +++ b/dev-php/smarty/smarty-2.6.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-2.6.0-r1.ebuild,v 1.1 2003/12/24 22:33:55 twp Exp $ + +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" +KEYWORDS="alpha arm hppa mips ppc sparc x86" +IUSE="doc" +DEPEND="dev-php/mod_php" +S=${WORKDIR}/${MY_P} + +src_install() { + dodoc [A-Z]* + mkdir -p ${D}/usr/lib/php + cp -a libs ${D}/usr/lib/php/Smarty +} + +pkg_postinst() { + einfo "Smarty has been installed in /usr/lib/php/Smarty." + einfo "To use it in your scripts, either" + einfo "1. define(SMARTY_DIR, \"/usr/lib/php/Smarty/\") in your scripts, or" + einfo "2. add /usr/lib/php/Smarty to includes= in /etc/php4/php.ini" +} |