Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/smarty: smarty-3.1.12.ebuild ChangeLog smarty-2.6.27.ebuild smarty-3.1.7.ebuild
Date: Sat, 30 Mar 2013 11:39:02
Message-Id: 20130330113856.631872171D@flycatcher.gentoo.org
1 mabi 13/03/30 11:38:56
2
3 Modified: ChangeLog
4 Added: smarty-3.1.12.ebuild smarty-2.6.27.ebuild
5 Removed: smarty-3.1.7.ebuild
6 Log:
7 version bump (smarty3 doesnt use smarty-docs anymore), cleanup
8
9 (Portage version: 2.2.0_alpha168/cvs/Linux x86_64, signed Manifest commit with key 0x4849EC6C)
10
11 Revision Changes Path
12 1.113 dev-php/smarty/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/ChangeLog?rev=1.113&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/ChangeLog?rev=1.113&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/ChangeLog?r1=1.112&r2=1.113
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v
21 retrieving revision 1.112
22 retrieving revision 1.113
23 diff -u -r1.112 -r1.113
24 --- ChangeLog 21 Jan 2013 18:09:47 -0000 1.112
25 +++ ChangeLog 30 Mar 2013 11:38:56 -0000 1.113
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-php/smarty
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.112 2013/01/21 18:09:47 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.113 2013/03/30 11:38:56 mabi Exp $
31 +
32 +*smarty-3.1.12 (30 Mar 2013)
33 +*smarty-2.6.27 (30 Mar 2013)
34 +
35 + 30 Mar 2013; Matti Bickel <mabi@g.o> +smarty-2.6.27.ebuild,
36 + +smarty-3.1.12.ebuild, -smarty-3.1.7.ebuild:
37 + version bump (smarty3 doesnt use smarty-docs anymore), cleanup
38
39 21 Jan 2013; Pacho Ramos <pacho@g.o> metadata.xml:
40 Cleanup as talked with him
41
42
43
44 1.1 dev-php/smarty/smarty-3.1.12.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/smarty-3.1.12.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/smarty-3.1.12.ebuild?rev=1.1&content-type=text/plain
48
49 Index: smarty-3.1.12.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-3.1.12.ebuild,v 1.1 2013/03/30 11:38:56 mabi Exp $
54
55 EAPI=4
56
57 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
58
59 MY_P="Smarty-${PV}"
60 DOC_PV="3.1.8"
61
62 DESCRIPTION="A template engine for PHP."
63 HOMEPAGE="http://www.smarty.net/"
64 SRC_URI="http://www.smarty.net/files/${MY_P}.tar.gz
65 doc? ( http://www.smarty.net/files/docs/manual-en-${DOC_PV}.zip )"
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 IUSE="doc"
69
70 DEPEND="app-arch/unzip"
71 RDEPEND="dev-lang/php"
72
73 S="${WORKDIR}/${MY_P}"
74
75 src_install() {
76 insinto "/usr/share/php/${PN}"
77 doins -r libs/*
78
79 dodoc *.txt README
80 use doc && dohtml -r "${WORKDIR}/manual-en/"*
81 }
82
83 pkg_postinst() {
84 elog "${PN} has been installed in /usr/share/php/${PN}/."
85 elog "To use it in your scripts, either"
86 elog "1. define('SMARTY_DIR', \"/usr/share/php/${PN}/\") in your scripts, or"
87 elog "2. add '/usr/share/php/${PN}/' to the 'include_path' variable in your"
88 elog "php.ini file under /etc/php/SAPI (where SAPI is e.g apache2-php5.3,"
89 elog "cgi-php5.3, etc)."
90 }
91
92
93
94 1.1 dev-php/smarty/smarty-2.6.27.ebuild
95
96 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/smarty-2.6.27.ebuild?rev=1.1&view=markup
97 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/smarty-2.6.27.ebuild?rev=1.1&content-type=text/plain
98
99 Index: smarty-2.6.27.ebuild
100 ===================================================================
101 # Copyright 1999-2013 Gentoo Foundation
102 # Distributed under the terms of the GNU General Public License v2
103 # $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-2.6.27.ebuild,v 1.1 2013/03/30 11:38:56 mabi Exp $
104
105 EAPI=4
106
107 inherit eutils
108
109 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
110
111 MY_P="Smarty-${PV}"
112
113 DESCRIPTION="A template engine for PHP."
114 HOMEPAGE="http://www.smarty.net/"
115 SRC_URI="http://www.smarty.net/files/${MY_P}.tar.gz"
116 LICENSE="LGPL-2.1"
117 SLOT="0"
118 IUSE="doc"
119
120 DEPEND=""
121 RDEPEND=""
122 PDEPEND="doc? ( =dev-php/smarty-docs-2* )"
123
124 S="${WORKDIR}/${MY_P}"
125
126 DOCS="BUGS ChangeLog FAQ NEWS QUICK_START README RELEASE_NOTES TODO"
127
128 src_install() {
129 insinto "/usr/share/php/${PN}"
130 doins -r libs/*
131 dodoc ${DOCS}
132 }
133
134 pkg_postinst() {
135 elog "${PN} has been installed in /usr/share/php/${PN}/."
136 elog "To use it in your scripts, either"
137 elog "1. define('SMARTY_DIR', \"/usr/share/php/${PN}/\") in your scripts, or"
138 elog "2. add '/usr/share/php/${PN}/' to the 'include_path' variable in your"
139 elog "php.ini file under /etc/php/*-php5.x"
140 }