61 lines
1.4 KiB
Bash
61 lines
1.4 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/www-apps/Apache-Gallery/Apache-Gallery-1.0_rc3.ebuild,v 1.15 2011/06/19 15:46:12 armin76 Exp $
|
|
|
|
EAPI="2"
|
|
|
|
inherit depend.apache perl-module webapp
|
|
|
|
MY_P=${P/_rc/RC}
|
|
|
|
DESCRIPTION="Apache gallery for mod_perl"
|
|
SRC_URI="http://apachegallery.dk/download/${MY_P}.tar.gz"
|
|
HOMEPAGE="http://apachegallery.dk/"
|
|
|
|
LICENSE="|| ( Artistic GPL-2 )"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
WEBAPP_MANUAL_SLOT="yes"
|
|
SLOT="0"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
DEPEND="${DEPEND}
|
|
=dev-lang/perl-5*
|
|
=www-apache/libapreq2-2*[perl]
|
|
>=media-libs/imlib2-1.0.6-r1
|
|
dev-perl/URI
|
|
>=dev-perl/ImageInfo-1.04-r2
|
|
>=dev-perl/ImageSize-2.99-r1
|
|
dev-perl/text-template
|
|
>=virtual/perl-CGI-3.08
|
|
dev-perl/Image-Imlib2
|
|
"
|
|
|
|
need_apache2
|
|
|
|
src_install() {
|
|
perl-module_src_install
|
|
webapp_src_preinst
|
|
|
|
dodoc Changes INSTALL README TODO UPGRADE || die
|
|
|
|
insinto "${MY_ICONSDIR}"/gallery
|
|
doins htdocs/*.png
|
|
|
|
dodir "${MY_HOSTROOTDIR}"/${PN}/templates/default
|
|
dodir "${MY_HOSTROOTDIR}"/${PN}/templates/new
|
|
|
|
insinto "${MY_HOSTROOTDIR}"/${PN}/templates/default
|
|
doins templates/default/*
|
|
|
|
insinto "${MY_HOSTROOTDIR}"/${PN}/templates/new
|
|
doins templates/new/*
|
|
|
|
insinto "${APACHE_VHOSTS_CONFDIR}"
|
|
doins "${FILESDIR}"/76_apache2-gallery.conf
|
|
|
|
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
|
|
webapp_src_install
|
|
}
|