Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/awl: awl-0.52.ebuild ChangeLog
Date: Tue, 26 Jun 2012 09:36:32
Message-Id: 20120626093621.127112004B@flycatcher.gentoo.org
1 patrick 12/06/26 09:36:21
2
3 Modified: ChangeLog
4 Added: awl-0.52.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha113/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-php/awl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 22 Mar 2012 00:20:11 -0000 1.2
24 +++ ChangeLog 26 Jun 2012 09:36:20 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/awl
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v 1.2 2012/03/22 00:20:11 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v 1.3 2012/06/26 09:36:20 patrick Exp $
30 +
31 +*awl-0.52 (26 Jun 2012)
32 +
33 + 26 Jun 2012; Patrick Lauer <patrick@g.o> +awl-0.52.ebuild:
34 + Bump
35
36 *awl-0.51-r1 (22 Mar 2012)
37
38 @@ -92,4 +97,3 @@
39 23 Jun 2008; lebarjack <francois.perichon@×××××××××××.fr>
40 +libawl-php-0.29.ebuild, +metadata.xml:
41 New ebuild for bug 229025 - (initial work by Cory Coager <ccoager@×××××.com>)
42 -
43
44
45
46 1.1 dev-php/awl/awl-0.52.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.52.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.52.ebuild?rev=1.1&content-type=text/plain
50
51 Index: awl-0.52.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-php/awl/awl-0.52.ebuild,v 1.1 2012/06/26 09:36:20 patrick Exp $
56
57 EAPI=2
58
59 inherit depend.php php-lib-r1
60
61 DESCRIPTION="Andrew McMillan's web libraries: A collection of generic classes
62 used by the davical calendar server"
63 HOMEPAGE="http://andrew.mcmillan.net.nz/projects/awl"
64 SRC_URI="http://debian.mcmillan.net.nz/packages/${PN}/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="doc"
70
71 DEPEND="dev-lang/php[pdo,postgres,xml]
72 doc? ( dev-php/PEAR-PhpDocumentor )"
73 RDEPEND="${DEPEND}"
74
75 need_php5
76
77 src_compile() {
78 if use doc ; then
79 ebegin "Generating documentation"
80 phpdoc -c "docs/api/phpdoc.ini" || die "Documentation failed to build"
81 fi
82 }
83
84 src_install() {
85 local docs="debian/README.Debian debian/changelog"
86 dodoc-php ${docs} || die "dodoc failed"
87
88 if use doc ; then
89 dohtml -r "docs/api/" || die "dohtml failed"
90 fi
91
92 php-lib-r1_src_install . dba/* inc/* scripts/*
93 }