# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils webapp MY_P=phpSQLiteAdmin-${PV/_rc/-rc} DESCRIPTION="Web-based administration for SQLite database in PHP" HOMEPAGE="http://phpsqliteadmin.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86" IUSE="" DEPEND="dev-php/PECL-sqlite dev-db/sqlite virtual/httpd-php" S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} } src_install() { webapp_src_preinst local docs="changelog.txt copying.txt readme.txt" # install the SQL scripts available to us # # unfortunately, we do not have scripts to upgrade from older versions # these are things we need to add at a later date # webapp_sqlscript mysql ${T}/mysql-setup.sql dodoc ${docs} # dohtml Documentation.html # Copy the app's main files einfo "Installing main files" cp -r . ${D}${MY_HTDOCSDIR} for doc in ${docs} ; do rm -f ${D}/${MY_HTDOCSDIR}/${doc} done webapp_configfile ${MY_HTDOCSDIR}/config.php # webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt # webapp_hook_script ${FILESDIR}/reconfig webapp_src_install fperms 0640 ${MY_HTDOCSDIR}/config.php fowners root:apache ${MY_HTDOCSDIR}/config.php }