summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom William Payne <twp@gentoo.org>2004-08-01 21:24:55 +0000
committerTom William Payne <twp@gentoo.org>2004-08-01 21:24:55 +0000
commite8bed0b83a3648ed80293af3a2479e8b2902c138 (patch)
tree34b4c642de4218be6b6d03dc3d9f31a16d0d8b61 /dev-php/smarty
parentVersion bump. Bug # 55590. (Manifest recommit) (diff)
downloadgentoo-2-e8bed0b83a3648ed80293af3a2479e8b2902c138.tar.gz
gentoo-2-e8bed0b83a3648ed80293af3a2479e8b2902c138.tar.bz2
gentoo-2-e8bed0b83a3648ed80293af3a2479e8b2902c138.zip
Version bump. Bug # 55590.
Diffstat (limited to 'dev-php/smarty')
-rw-r--r--dev-php/smarty/ChangeLog7
-rw-r--r--dev-php/smarty/Manifest2
-rw-r--r--dev-php/smarty/files/digest-smarty-2.6.31
-rw-r--r--dev-php/smarty/smarty-2.6.3.ebuild28
4 files changed, 37 insertions, 1 deletions
diff --git a/dev-php/smarty/ChangeLog b/dev-php/smarty/ChangeLog
index 556821a422cc..1d606e58887c 100644
--- a/dev-php/smarty/ChangeLog
+++ b/dev-php/smarty/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-php/smarty
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.16 2004/07/04 08:15:36 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.17 2004/08/01 21:24:55 twp Exp $
+
+*smarty-2.6.3 (01 Aug 2004)
+
+ 01 Aug 2004; <twp@gentoo.org> +smarty-2.6.3.ebuild:
+ Version bump. Bug # 55590.
04 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> smarty-2.6.2.ebuild:
Stable on alpha.
diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest
index 2f24cdea3577..6d84fd64e0ce 100644
--- a/dev-php/smarty/Manifest
+++ b/dev-php/smarty/Manifest
@@ -1,6 +1,8 @@
MD5 66adefa7f0bb0e43b231400952a8fdc5 smarty-2.6.2.ebuild 896
MD5 d58936231d3a7d65bcf61a69b8701148 smarty-2.6.0-r2.ebuild 869
+MD5 a387ce625d23fac26c703649f93682a8 smarty-2.6.3.ebuild 900
MD5 b2e036a7e531fd68df74693de6b9ab62 ChangeLog 2208
MD5 d992d28bec4a3bfd72b441145091a58e metadata.xml 244
MD5 e4efdb7a0ff70439c7314f0f570ea9aa files/digest-smarty-2.6.2 64
+MD5 1e2501707d4e0d26e0f20591cb9ffa38 files/digest-smarty-2.6.3 64
MD5 cc746919357bf3d40185fb16d4e2be1c files/digest-smarty-2.6.0-r2 64
diff --git a/dev-php/smarty/files/digest-smarty-2.6.3 b/dev-php/smarty/files/digest-smarty-2.6.3
new file mode 100644
index 000000000000..b262bb22f688
--- /dev/null
+++ b/dev-php/smarty/files/digest-smarty-2.6.3
@@ -0,0 +1 @@
+MD5 cbbe9864594368de3e8348c17eb19a3b Smarty-2.6.3.tar.gz 129599
diff --git a/dev-php/smarty/smarty-2.6.3.ebuild b/dev-php/smarty/smarty-2.6.3.ebuild
new file mode 100644
index 000000000000..fe15ba8227ad
--- /dev/null
+++ b/dev-php/smarty/smarty-2.6.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-2.6.3.ebuild,v 1.1 2004/08/01 21:24: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 ~hppa ~ppc ~sparc ~x86"
+IUSE="doc"
+DEPEND="doc? ( dev-php/smarty-docs )"
+RDEPEND="virtual/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"
+}