forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drqueue-9999.ebuild
140 lines (116 loc) · 3.45 KB
/
drqueue-9999.ebuild
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1 git-2 user
DESCRIPTION="Render farm managing software"
HOMEPAGE="http://www.drqueue.org/"
EGIT_REPO_URI="https://ssl.drqueue.org/git/${PN}.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="X python ruby"
RDEPEND="X? ( x11-libs/gtk+:2 )
ruby? ( dev-lang/ruby )
app-shells/tcsh"
DEPEND="${RDEPEND}
python? ( dev-lang/swig )
ruby? ( dev-lang/swig )
python? ( dev-python/setuptools[${PYTHON_USEDEP}] )
>=dev-util/scons-0.97"
pkg_setup() {
enewgroup drqueue
enewuser drqueue -1 /bin/bash /dev/null daemon,drqueue
use python && python_pkg_setup
}
src_compile() {
if use X; then
scons ${MAKEOPTS} build_drman=yes || die "scons failed"
else
scons ${MAKEOPTS} build_drqman=no || die "scons failed"
fi
if use python; then
einfo "compiling python bindings"
pushd "${S}"/python/ > /dev/null
distutils-r1_src_compile
popd > /dev/null
fi
if use ruby; then
einfo "compiling ruby bindings"
cd "${S}"/ruby/
ruby extconf.rb
emake || die "emake failed"
fi
}
pkg_preinst() {
# stop daemons since script is being updated
[ -n "$(pidof drqsd)" -a -x /etc/init.d/drqsd ] && \
/etc/init.d/drqsd stop
[ -n "$(pidof drqmd)" -a -x /etc/init.d/drqmd ] && \
/etc/init.d/drqmd stop
}
src_install() {
dodir /var/lib
scons PREFIX="${D}"/var/lib install || die "install failed"
# not really needed
rm -R "${D}"/var/lib/drqueue/bin/viewcmd || die "rm failed"
# install {conf,init,env}.d files
for i in drqmd drqsd ; do
newinitd "${FILESDIR}"/${PN}-0.64.3-etc-initd-${i} ${i} || die "newinitd failed"
newconfd "${FILESDIR}"/${PN}-0.64.3-etc-confd-${i} ${i} || die "newconfd failed"
done
newenvd "${FILESDIR}"/${PN}-0.64.3-etc-envd-02drqueue 02drqueue || die "newenvd failed"
# create the drqueue pid directory
dodir /var/run/drqueue
keepdir /var/run/drqueue
# move logs dir to /var/log
dodir /var/log
mv "${D}"/var/lib/drqueue/logs "${D}"/var/log/drqueue
# fix bins and make links for /usr/bin
dodir /usr/bin
local commands=( blockhost cjob jobfinfo \
jobinfo master requeue sendjob slave )
if use X ; then
commands=( ${commands[@]} drqman )
else
# Remove drqman leftovers
for i in etc/drqman.rc etc/drqman.conf bin/drqman ; do
rm -v "${D}"/var/lib/drqueue/$i || die "rm failed"
done
fi
for cmd in ${commands[@]} ; do
sed -e 's|SHLIB=\$DRQUEUE_ROOT/bin/shlib|SHLIB=/var/lib/drqueue/bin/shlib|' \
-i "${D}"var/lib/drqueue/bin/${cmd} || die "sed failed"
dosym /var/lib/drqueue/bin/${cmd} /usr/bin/ \
|| die "dosym failed"
done
# install documentation
dodoc AUTHORS ChangeLog INSTALL \
NEWS README README.mentalray \
README.python README.shell_variables \
setenv || die "dodoc failed"
if use python; then
cd "${S}"/python/
distutils-r1_src_install
dodir /var/lib/${PN}/python
# Install DRKeewee web service and example python scripts
insinto /var/lib/${PN}/python
doins -r DrKeewee examples || die "doins failed"
python_fix_shebang "${ED}var/lib/${PN}/python"
fi
if use ruby; then
cd "${S}"/ruby/
emake DESTDIR="${D}" install || die "emake failed"
fi
}
pkg_postinst() {
einfo "Edit /etc/conf.d/drqsd /etc/env.d/02drqueue"
einfo "and /etc/conf.d/drqmd DRQUEUE_MASTER=\"hostname\""
einfo "to reflect your master's hostname."
if use python ; then
einfo
einfo "DrKeewee can be found in /var/lib/drqueue/python"
fi
}