| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild,v 1.15 2010/10/04 00:01:32 reavertm Exp $
|
| 4 |
|
| 5 |
EAPI="3"
|
| 6 |
PYTHON_DEPEND="2"
|
| 7 |
SUPPORT_PYTHON_ABIS="1"
|
| 8 |
|
| 9 |
inherit distutils eutils
|
| 10 |
|
| 11 |
DESCRIPTION="Gentoo's installer for web-based applications"
|
| 12 |
HOMEPAGE="http://sourceforge.net/projects/webapp-config/"
|
| 13 |
SRC_URI="mirror://gentoo/${P}.tar.gz"
|
| 14 |
|
| 15 |
LICENSE="GPL-2"
|
| 16 |
SLOT="0"
|
| 17 |
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
|
| 18 |
IUSE=""
|
| 19 |
|
| 20 |
DEPEND=""
|
| 21 |
RDEPEND=""
|
| 22 |
RESTRICT_PYTHON_ABIS="3.*"
|
| 23 |
|
| 24 |
PYTHON_MODNAME="WebappConfig"
|
| 25 |
|
| 26 |
src_prepare() {
|
| 27 |
epatch "${FILESDIR}/${P}-apache-move.patch"
|
| 28 |
# Do not build nor install eclass manual, bug 322759
|
| 29 |
rm -f doc/webapp.eclass.5*
|
| 30 |
sed -e '/MAN_PAGES/s/webapp.eclass.5//' \
|
| 31 |
-e '/HTML_PAGES/s/webapp.eclass.5.html//' \
|
| 32 |
-i doc/Makefile || die
|
| 33 |
}
|
| 34 |
|
| 35 |
src_install() {
|
| 36 |
# According to this discussion:
|
| 37 |
# http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
|
| 38 |
# distutils does not provide for specifying two different script install
|
| 39 |
# locations. Since we only install one script here the following should
|
| 40 |
# be ok
|
| 41 |
distutils_src_install --install-scripts="/usr/sbin"
|
| 42 |
|
| 43 |
python_convert_shebangs 2 "${ED}usr/sbin/webapp-config"
|
| 44 |
|
| 45 |
insinto /etc/vhosts
|
| 46 |
doins config/webapp-config
|
| 47 |
|
| 48 |
keepdir /usr/share/webapps
|
| 49 |
keepdir /var/db/webapps
|
| 50 |
|
| 51 |
dodoc examples/phpmyadmin-2.5.4-r1.ebuild AUTHORS.txt CHANGES.txt examples/postinstall-en.txt
|
| 52 |
doman doc/*.[58]
|
| 53 |
dohtml doc/*.[58].html
|
| 54 |
}
|
| 55 |
|
| 56 |
src_test() {
|
| 57 |
testing() {
|
| 58 |
PYTHONPATH="." "$(PYTHON)" WebappConfig/tests/dtest.py
|
| 59 |
}
|
| 60 |
python_execute_function testing
|
| 61 |
}
|
| 62 |
|
| 63 |
pkg_postinst() {
|
| 64 |
distutils_pkg_postinst
|
| 65 |
|
| 66 |
elog "Now that you have upgraded webapp-config, you **must** update your"
|
| 67 |
elog "config files in /etc/vhosts/webapp-config before you emerge any"
|
| 68 |
elog "packages that use webapp-config."
|
| 69 |
}
|