blob: 41d945af6a61e6e9b71fe5b7462e677800f43906 (
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
47
48
49
50
51
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils user
DESCRIPTION="Next generation Hotline server in python. kang's branch"
HOMEPAGE="http://www.avaraline.net"
SRC_URI="mirror://gentoo/phxd-0.1.0_pre23092005.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="dev-python/twisted-core
dev-python/twisted-web"
RDEPEND=""
pkg_postinst() {
enewgroup phxd
enewuser phxd -1 /bin/bash /var/phxd phxd
chown phxd:phxd /var/phxd/files
chown phxd:phxd /var/phxd/chatlogs
}
src_install() {
cd "${WORKDIR}"
cd phxd
doenvd "${FILESDIR}"/80phxd
dodoc INSTALL README README-kang
dodir /var/phxd
exeinto /var/phxd; doexe phxd
cpdirs="support shared server client"
for i in $cpdirs; do
cp -R $i "${D}"/var/phxd
done
dodir /var/phxd/files
dodir /var/phxd/chatlogs
keepdir /var/phxd/files
keepdir /var/phxd/chatlogs
keepdir /var/phxd
insinto /var/phxd; doins config.py
}
|