| 1 |
blueness |
1.17 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
hollow |
1.1 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
blueness |
1.17 |
# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-1.50.16-r1.ebuild,v 1.16 2011/02/06 22:03:56 leio Exp $
|
| 4 |
hollow |
1.1 |
|
| 5 |
arfrever |
1.14 |
EAPI="3"
|
| 6 |
|
|
PYTHON_DEPEND="2"
|
| 7 |
|
|
SUPPORT_PYTHON_ABIS="1"
|
| 8 |
|
|
|
| 9 |
|
|
inherit distutils eutils
|
| 10 |
hollow |
1.1 |
|
| 11 |
|
|
DESCRIPTION="Gentoo's installer for web-based applications"
|
| 12 |
sping |
1.13 |
HOMEPAGE="http://sourceforge.net/projects/webapp-config/"
|
| 13 |
|
|
SRC_URI="mirror://gentoo/${P}.tar.gz"
|
| 14 |
hollow |
1.1 |
|
| 15 |
|
|
LICENSE="GPL-2"
|
| 16 |
|
|
SLOT="0"
|
| 17 |
leio |
1.16 |
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
|
| 18 |
hollow |
1.1 |
IUSE=""
|
| 19 |
|
|
|
| 20 |
|
|
DEPEND=""
|
| 21 |
arfrever |
1.14 |
RDEPEND=""
|
| 22 |
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
| 23 |
|
|
|
| 24 |
|
|
PYTHON_MODNAME="WebappConfig"
|
| 25 |
hollow |
1.1 |
|
| 26 |
arfrever |
1.14 |
src_prepare() {
|
| 27 |
|
|
epatch "${FILESDIR}/${P}-apache-move.patch"
|
| 28 |
reavertm |
1.15 |
# 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 |
hollow |
1.1 |
}
|
| 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 |
arfrever |
1.14 |
insinto /etc/vhosts
|
| 44 |
|
|
doins config/webapp-config
|
| 45 |
|
|
|
| 46 |
hollow |
1.1 |
keepdir /usr/share/webapps
|
| 47 |
|
|
keepdir /var/db/webapps
|
| 48 |
arfrever |
1.14 |
|
| 49 |
beandog |
1.12 |
dodoc examples/phpmyadmin-2.5.4-r1.ebuild AUTHORS.txt CHANGES.txt examples/postinstall-en.txt
|
| 50 |
arfrever |
1.14 |
doman doc/*.[58]
|
| 51 |
|
|
dohtml doc/*.[58].html
|
| 52 |
hollow |
1.1 |
}
|
| 53 |
|
|
|
| 54 |
|
|
src_test() {
|
| 55 |
arfrever |
1.14 |
testing() {
|
| 56 |
|
|
PYTHONPATH="." "$(PYTHON)" WebappConfig/tests/dtest.py
|
| 57 |
|
|
}
|
| 58 |
|
|
python_execute_function testing
|
| 59 |
hollow |
1.1 |
}
|
| 60 |
|
|
|
| 61 |
|
|
pkg_postinst() {
|
| 62 |
arfrever |
1.14 |
distutils_pkg_postinst
|
| 63 |
|
|
|
| 64 |
hollow |
1.1 |
elog "Now that you have upgraded webapp-config, you **must** update your"
|
| 65 |
|
|
elog "config files in /etc/vhosts/webapp-config before you emerge any"
|
| 66 |
|
|
elog "packages that use webapp-config."
|
| 67 |
|
|
}
|