Files
@ 3353ad542e61
Branch filter:
Location: ohnobinki_overlay/www-apps/flyspray/flyspray-0.9.9.6.ebuild - annotation
3353ad542e61
1.2 KiB
application/vnd.gentoo.ebuild
Bumped to live-2010.04.09, attempting to follow changes for the corresponding bump in portage. Need for bump reported by geos_one.
(Portage version: 2.2_rc67-r8/hg/Linux x86_64)
(Signed Manifest commit)
(Portage version: 2.2_rc67-r8/hg/Linux x86_64)
(Signed Manifest commit)
b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc a7b0954aa0b8 b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc a7b0954aa0b8 a7b0954aa0b8 a7b0954aa0b8 a7b0954aa0b8 b9d8653ec8dc b9d8653ec8dc 8d5e21250f5e a7b0954aa0b8 b9d8653ec8dc b9d8653ec8dc b740f6fa1d1e a7b0954aa0b8 a7b0954aa0b8 b9d8653ec8dc a7b0954aa0b8 a7b0954aa0b8 a7b0954aa0b8 b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc a7b0954aa0b8 a7b0954aa0b8 b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc b9d8653ec8dc | # Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
# we need webapp's default pkg_setup()
inherit eutils webapp
DESCRIPTION="An uncomplicated web-based bug tracking system"
HOMEPAGE="http://flyspray.org/"
SRC_URI="http://flyspray.org/${P}.zip"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64"
IUSE="graphviz"
# need_apache and friends not used because they aren't EAPI="2" friendly
DEPEND="app-arch/unzip"
RDEPEND="graphviz? ( media-gfx/graphviz )
virtual/httpd-php[xml]
|| ( virtual/httpd-php[mysql]
virtual/httpd-php[mysqli]
virtual/httpd-php[postgres] )
dev-php/adodb"
src_prepare () {
#http://bugs.flyspray.org/task/1617
epatch "${FILESDIR}"/${P}-system-adodb.patch
mv htaccess.dist .htaccess || die
touch ${PN}.conf.php || die
rm -r adodb || die "removing bundled dev-php/adodb"
}
src_install () {
webapp_src_preinst
dodoc docs/*.txt || die
rm -r docs || die
insinto "${MY_HTDOCSDIR}"
doins -r . || die
webapp_serverowned "${MY_HTDOCSDIR}"/{attachments,cache,${PN}.conf.php}
webapp_configfile "${MY_HTDOCSDIR}"/{.htaccess,${PN}.conf.php}
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_src_install
}
|