Gentoo Archives: gentoo-commits

From: "Bjarke Istrup Pedersen (gurligebis)" <gurligebis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/ZendFramework: ChangeLog ZendFramework-1.11.12.ebuild ZendFramework-1.11.10.ebuild
Date: Tue, 03 Jul 2012 14:35:23
Message-Id: 20120703143506.B088E2004B@flycatcher.gentoo.org
1 gurligebis 12/07/03 14:35:06
2
3 Modified: ChangeLog
4 Added: ZendFramework-1.11.12.ebuild
5 Removed: ZendFramework-1.11.10.ebuild
6 Log:
7 Bumping to 1.11.12
8
9 (Portage version: 2.2.0_alpha115/cvs/Linux i686)
10
11 Revision Changes Path
12 1.13 dev-php/ZendFramework/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ChangeLog?rev=1.13&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ChangeLog?rev=1.13&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ChangeLog?r1=1.12&r2=1.13
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v
21 retrieving revision 1.12
22 retrieving revision 1.13
23 diff -u -r1.12 -r1.13
24 --- ChangeLog 15 Dec 2011 22:03:55 -0000 1.12
25 +++ ChangeLog 3 Jul 2012 14:35:06 -0000 1.13
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-php/ZendFramework
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.12 2011/12/15 22:03:55 gurligebis Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ChangeLog,v 1.13 2012/07/03 14:35:06 gurligebis Exp $
32 +
33 +*ZendFramework-1.11.12 (03 Jul 2012)
34 +
35 + 03 Jul 2012; <gurligebis@g.o> -ZendFramework-1.11.10.ebuild,
36 + +ZendFramework-1.11.12.ebuild:
37 + Bumping to 1.11.12
38
39 15 Dec 2011; <gurligebis@g.o> ZendFramework-1.11.6.ebuild,
40 ZendFramework-1.11.10.ebuild:
41
42
43
44 1.1 dev-php/ZendFramework/ZendFramework-1.11.12.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ZendFramework-1.11.12.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-php/ZendFramework/ZendFramework-1.11.12.ebuild,v 1.1 2012/07/03 14:35:06 gurligebis Exp $
54
55 EAPI="2"
56
57 PHP_LIB_NAME="Zend"
58
59 inherit php-lib-r1
60
61 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
62
63 DESCRIPTION="Zend Framework is a high quality and open source framework for developing Web Applications."
64 HOMEPAGE="http://framework.zend.com/"
65 SRC_URI="!minimal? ( http://framework.zend.com/releases/${P}/${P}.tar.gz )
66 minimal? ( http://framework.zend.com/releases/${P}/${P}-minimal.tar.gz )
67 doc? (
68 http://framework.zend.com/releases/${P}/${P}-apidoc.tar.gz
69 http://framework.zend.com/releases/${P}/${P}-manual-en.tar.gz )"
70 LICENSE="BSD"
71 SLOT="0"
72 IUSE="doc examples minimal cli"
73
74 DEPEND="cli? ( dev-lang/php[simplexml,tokenizer] )"
75 RDEPEND="${DEPEND}"
76 need_php_by_category
77
78 src_prepare() {
79 if use minimal ; then
80 S="${WORKDIR}/${P}-minimal"
81 if use doc ; then
82 mv "${WORKDIR}/${P}/documentation" "${S}"
83 fi
84 fi
85 }
86
87 src_install() {
88 if use cli ; then
89 insinto /usr/bin
90 doins bin/zf.php
91 dobin bin/zf.sh
92 dosym /usr/bin/zf.sh /usr/bin/zf
93 fi
94 php-lib-r1_src_install library/Zend $(cd library/Zend ; find . -type f -print)
95
96 if ! use minimal ; then
97 insinto /usr/share/php
98 doins -r externals/dojo
99 fi
100
101 if use examples ; then
102 insinto /usr/share/doc/${PF}
103
104 if ! use minimal ; then
105 doins -r demos
106 fi
107 fi
108
109 dodoc README.txt
110 if use doc ; then
111 dohtml -r documentation/*
112 fi
113 }
114
115 pkg_postinst() {
116 elog "For more info, please take a look at the manual at:"
117 elog "http://framework.zend.com/manual"
118 elog ""
119
120 if use minimal; then
121 elog "You have installed the minimal version of ZendFramework,"
122 elog "so the Dojo toolkit, demos and tests have not been installed."
123 else
124 elog "You have installed the full version of ZendFramework, which"
125 elog "includes the Dojo toolkit, demos and tests."
126 elog "To install ZendFramework without these, enable the"
127 elog "minimal USE flag."
128 fi
129 }