blob: 216bffef69d2c33169f1fb76c073ff95fdfe710a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/pyblosxom/pyblosxom-1.3.ebuild,v 1.1 2006/02/03 19:43:27 wrobel Exp $
inherit eutils distutils webapp
DESCRIPTION="PyBlosxom is a lightweight weblog system."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://pyblosxom.sourceforge.net/"
LICENSE="MIT"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/python"
src_unpack() {
unpack ${A} && cd "${S}"
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_install() {
webapp_src_preinst
distutils_src_install
dodoc README
keepdir /usr/share/${P}/plugins
keepdir ${MY_HTDOCSDIR}/data
keepdir ${MY_HTDOCSDIR}/log
mkdir -p ${D}${MY_CGIBINDIR}/pyblosxom
cp web/{config.py,pyblosxom.cgi} ${D}${MY_CGIBINDIR}/pyblosxom/
webapp_configfile ${MY_CGIBINDIR}/pyblosxom/config.py
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_postupgrade_txt en ${FILESDIR}/postupgrade-en.txt
webapp_hook_script ${FILESDIR}/config-hook.sh
webapp_src_install
}
|