# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.10.1.ebuild,v 1.9 2007/05/31 21:55:39 angelos Exp $ inherit eutils webapp depend.php MY_PV=2.4.2 MY_P="openads-${MY_PV}" DESCRIPTION="Advanced web-based ad management" HOMEPAGE="http://www.openads.org/" SRC_URI="http://download.openads.org/${MY_P}.zip" LICENSE="GPL 2" KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" DEPEND=">=dev-lang/php-4.4.2 >=dev-db/mysql-4.0.18" S=${WORKDIR}/${MY_P} need_php pkg_setup() { webapp_pkg_setup if ! PHPCHECKNODIE="yes" require_php_with_use crypt ctype xml pcre session unicode zlib \ || ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ; then eerror eerror "${PHP_PKG} needs to be re-installed with all of the following" eerror "USE flags enabled:" eerror eerror eerror "ctype pcre session unicode" eerror eerror "as well as any of the following USE flags enabled:" eerror eerror "mysql or mysqli if using dev-lang/php-5" eerror "mysql if using dev-lang/php-4" eerror die "Re-install ${PHP_PKG}" fi } src_unpack() { unpack ${A} cd ${S} # Remove .cvs* files and CVS directories find ${S} -name .cvs\* -or \( -type d -name CVS -prune \) | xargs rm -rf } src_install() { webapp_src_preinst local docs="INSTALL.txt LICENSE.txt README.txt UPGRADE.txt" dodoc ${docs} #dohtml Documentation.html cp -r . ${D}${MY_HTDOCSDIR} #webapp_configfile ${MY_HTDOCSDIR}/config.inc.php #webapp_serverowned ${MY_HTDOCSDIR}/config.inc.php webapp_postinst_txt en ${FILESDIR}/postinstall-en-2.4.txt #webapp_hook_script ${FILESDIR}/reconfig-2.8 webapp_src_install }