# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit webapp MY_P="${PN/y/y_}${PV}" DESCRIPTION="A Web-based frontend to an ordinary directory structure of your filesystem." HOMEPAGE="http://webdirectory.benjaminheckmann.de" SRC_URI="http://www.benjaminheckmann.de/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86" IUSE="vhosts" S="${WORKDIR}/${PN}" DEPEND="dev-lang/php" src_install() { cd "${S}" webapp_src_preinst local htdocs="auth_demo.ini class index.php webdirectory.css webdirectory.ini webdirectory.php" insinto ${MY_HTDOCSDIR} for i in ${htdocs}; do doins -r $i; done webapp_configfile ${MY_HTDOCSDIR}/${PN}.ini webapp_postinst_txt en readme.txt webapp_src_install }