Files
@ e282756e3704
Branch filter:
Location: ohnobinki_overlay/www-apps/flyspray/flyspray-0.9.9.6.ebuild - annotation
e282756e3704
1.2 KiB
application/vnd.gentoo.ebuild
net-print/samsung-unified-linux-driver: New ebuild for Samsung's Unified Linux Print Driver.
(Portage version: 2.2.0_alpha2-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
(Portage version: 2.2.0_alpha2-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
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
}
|