diff options
Diffstat (limited to 'www-apps/bugzilla/bugzilla-2.20.4.ebuild')
-rw-r--r-- | www-apps/bugzilla/bugzilla-2.20.4.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/www-apps/bugzilla/bugzilla-2.20.4.ebuild b/www-apps/bugzilla/bugzilla-2.20.4.ebuild deleted file mode 100644 index 8ba753a466c5..000000000000 --- a/www-apps/bugzilla/bugzilla-2.20.4.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/bugzilla/bugzilla-2.20.4.ebuild,v 1.3 2007/07/29 17:24:24 phreak Exp $ - -inherit webapp - -DESCRIPTION="Bugzilla is the Bug-Tracking System from the Mozilla project" -SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/webtools/${P}.tar.gz" -HOMEPAGE="http://www.bugzilla.org" - -LICENSE="MPL-1.1 NPL-1.1" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -IUSE="graphviz mysql postgres" - -RDEPEND=" - >=dev-lang/perl-5.6.1 - postgres? ( >=dev-perl/DBD-Pg-1.43 ) - mysql? ( <=dev-perl/DBD-mysql-3.0002 ) - >=www-servers/apache-2.0 - graphviz? ( media-gfx/graphviz ) - >=dev-perl/AppConfig-1.52 - >=virtual/perl-CGI-2.93 - >=dev-perl/TimeDate-1.16 - >=dev-perl/DBI-1.38 - >=virtual/perl-File-Spec-0.84 - virtual/perl-File-Temp - >=dev-perl/Template-Toolkit-2.08 - >=dev-perl/Text-Tabs+Wrap-2001.0131 - >=dev-perl/MailTools-1.67 - virtual/perl-Storable - >=dev-perl/GD-1.20 - >=dev-perl/Chart-2.3 - dev-perl/GDGraph - dev-perl/GDTextUtil - dev-perl/XML-Parser - >=dev-perl/PatchReader-0.9.4 - dev-perl/MIME-tools - dev-perl/perl-ldap - virtual/mta -" - -src_unpack() { - unpack ${A} - cd ${S} - # remove CVS directories - find . -type d -name 'CVS' -print | xargs rm -rf -} - -src_install () { - webapp_src_preinst - - cp -r ${S}/* ${D}/${MY_HTDOCSDIR} || die - for file in `find -type d -printf "%p/* "`; do - webapp_serverowned "${MY_HTDOCSDIR}/${file}" - done - - cp ${FILESDIR}/2.20/apache.htaccess ${D}/${MY_HTDOCSDIR}/.htaccess - - local FILE="bugzilla.cron.daily bugzilla.cron.tab" - cd ${FILESDIR}/2.20 - cp ${FILE} ${D}/${MY_HTDOCSDIR} - - webapp_hook_script ${FILESDIR}/2.20/reconfig - webapp_postinst_txt en ${FILESDIR}/2.20/postinstall-en.txt - webapp_src_install -} |