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 | fca98cfcbc47cf5115984e38514fa3f7628cbf57 (patch) | |
tree | 081908c84bb9fa8b4dca68e35c583aa4e942bbfb | |
parent | Bug # 36412 (diff) | |
download | gentoo-2-fca98cfcbc47cf5115984e38514fa3f7628cbf57.tar.gz gentoo-2-fca98cfcbc47cf5115984e38514fa3f7628cbf57.tar.bz2 gentoo-2-fca98cfcbc47cf5115984e38514fa3f7628cbf57.zip |
Bug # 36412
-rw-r--r-- | dev-php/smarty/ChangeLog | 6 | ||||
-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 |
4 files changed, 35 insertions, 4 deletions
diff --git a/dev-php/smarty/ChangeLog b/dev-php/smarty/ChangeLog index 8e5d735e816d..688ca5046ffb 100644 --- a/dev-php/smarty/ChangeLog +++ b/dev-php/smarty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php/smarty # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.5 2003/12/22 19:36:10 twp Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.6 2003/12/24 22:33:55 twp Exp $ + + 24 Dec 2003; Tom Payne <twp@gentoo.org> smarty-2.6.0.ebuild : + Install libs/core/*. Bug # 36412. + Don't install docs (use smarty-docs package instead). *smarty-2.6.0 (22 Dec 2003) 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" +} |