Gentoo Archives: gentoo-commits

From: "Gunnar Wrobel (wrobel)" <wrobel@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/bugzilla: ChangeLog bugzilla-3.0.2.ebuild bugzilla-3.0.1.ebuild
Date: Wed, 19 Sep 2007 15:32:32
Message-Id: E1IY0xw-00025h-FM@stork.gentoo.org
1 wrobel 07/09/19 14:55:48
2
3 Modified: ChangeLog
4 Added: bugzilla-3.0.2.ebuild
5 Removed: bugzilla-3.0.1.ebuild
6 Log:
7 Bumped to 3.0.2 (sec issue #193062)
8 (Portage version: 2.1.2.12)
9
10 Revision Changes Path
11 1.98 www-apps/bugzilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/bugzilla/ChangeLog?rev=1.98&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/bugzilla/ChangeLog?rev=1.98&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/bugzilla/ChangeLog?r1=1.97&r2=1.98
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apps/bugzilla/ChangeLog,v
20 retrieving revision 1.97
21 retrieving revision 1.98
22 diff -u -r1.97 -r1.98
23 --- ChangeLog 10 Sep 2007 04:59:02 -0000 1.97
24 +++ ChangeLog 19 Sep 2007 14:55:47 -0000 1.98
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-apps/bugzilla
27 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apps/bugzilla/ChangeLog,v 1.97 2007/09/10 04:59:02 wrobel Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-apps/bugzilla/ChangeLog,v 1.98 2007/09/19 14:55:47 wrobel Exp $
30 +
31 +*bugzilla-3.0.2 (19 Sep 2007)
32 +
33 + 19 Sep 2007; <wrobel@g.o> -bugzilla-3.0.1.ebuild,
34 + +bugzilla-3.0.2.ebuild:
35 + Bumped to 3.0.2 (sec issue #193062)
36
37 10 Sep 2007; <wrobel@g.o> -files/2.18/bugzilla.cron.daily,
38 -files/2.18/bugzilla.cron.tab, -files/2.18/apache.htaccess,
39
40
41
42 1.1 www-apps/bugzilla/bugzilla-3.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/bugzilla/bugzilla-3.0.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/bugzilla/bugzilla-3.0.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bugzilla-3.0.2.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-apps/bugzilla/bugzilla-3.0.2.ebuild,v 1.1 2007/09/19 14:55:47 wrobel Exp $
52
53 inherit webapp depend.apache versionator eutils
54
55 GZ_PV="3.0.1"
56
57 DESCRIPTION="Bugzilla is the Bug-Tracking System from the Mozilla project"
58 SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/webtools/${P}.tar.gz
59 linguas_de? ( http://ganderbay.net/dl/germzilla-${GZ_PV}-1.utf-8.tar.gz )"
60 HOMEPAGE="http://www.bugzilla.org"
61
62 LICENSE="MPL-1.1 NPL-1.1"
63 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64
65 IUSE="modperl extras graphviz mysql postgres linguas_de"
66
67 RDEPEND="
68 >=dev-lang/perl-5.8.0
69 mysql? ( >=dev-perl/DBD-mysql-3.0007 )
70 postgres? ( >=dev-perl/DBD-Pg-1.45 )
71 graphviz? ( media-gfx/graphviz )
72 >=virtual/perl-CGI-2.93
73 modperl? (
74 >=virtual/perl-CGI-3.11
75 =www-apache/mod_perl-2*
76 >=dev-perl/Apache-DBI-0.96
77 )
78
79 >=dev-perl/TimeDate-1.16
80 >=dev-perl/DBI-1.41
81 >=virtual/perl-File-Spec-0.84
82 >=dev-perl/Template-Toolkit-2.13
83 >=virtual/perl-MIME-Base64-3.01
84 dev-perl/MIME-tools
85 >=dev-perl/Email-Send-2.00
86 dev-perl/Email-MIME-Modifier
87
88 extras? (
89 >=dev-perl/GD-1.20
90 dev-perl/Template-GD
91 >=dev-perl/Chart-2.3
92 dev-perl/GDGraph
93 dev-perl/GDTextUtil
94 dev-perl/XML-Twig
95 dev-perl/libwww-perl
96 >=dev-perl/PatchReader-0.9.4
97 dev-perl/perl-ldap
98 dev-perl/SOAP-Lite
99 >=dev-perl/HTML-Parser-3.40
100 dev-perl/HTML-Scrubber
101 dev-perl/Email-MIME-Attachment-Stripper
102 dev-perl/Email-Reply
103 )
104 "
105
106 want_apache
107
108 pkg_setup() {
109 webapp_pkg_setup
110
111 if use extras ; then
112 if ! has_version media-gfx/imagemagick || ! built_with_use media-gfx/imagemagick perl ; then
113 elog "Consider installing media-gfx/imagemagick with USE=\"perl\""
114 elog "to convert BMP attachments to PNG"
115 fi
116 fi
117 }
118
119 src_unpack() {
120 unpack ${A}
121
122 if use linguas_de ; then
123 mv de ${P}/template
124 elog "Installing German translation pack"
125 elog "Be sure to read http://wiki.ganderbay.net/wde/Germzilla-Installation"
126 elog "for installation instructions"
127 fi
128
129 # remove CVS directories
130 cd ${S}
131 find . -type d -name 'CVS' -print | xargs rm -rf
132 }
133
134 src_install () {
135 webapp_src_preinst
136
137 cp -r ${S}/* ${D}/${MY_HTDOCSDIR} || die
138
139 local FILE="bugzilla.cron.daily bugzilla.cron.tab"
140 cd ${FILESDIR}
141 cp ${FILE} ${D}/${MY_HTDOCSDIR}
142
143 webapp_hook_script ${FILESDIR}/$(get_version_component_range 1-2)/reconfig
144 webapp_postinst_txt en ${FILESDIR}/$(get_version_component_range 1-2)/postinstall-en.txt
145 webapp_src_install
146
147 # bug #124282
148 chmod -R +x ${D}/${MY_HTDOCSDIR}/*.cgi
149 }
150
151
152
153 --
154 gentoo-commits@g.o mailing list