blob: deb756f468ef90002b99c50d3859782f3c05a831 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/bitten/bitten-0.6-r1.ebuild,v 1.1 2012/08/27 15:46:41 xarthisius Exp $
EAPI=4
MY_PN=Bitten
MY_P=${MY_PN}-${PV}
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils user
DESCRIPTION="Continuous integration plugin for Trac"
HOMEPAGE="http://bitten.edgewall.org/"
SRC_URI="http://ftp.edgewall.com/pub/${PN}/${MY_P}.tar.gz"
LICENSE="BSD Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="server test"
CDEPEND="dev-python/setuptools"
DEPEND="${CDEPEND}
test? ( dev-python/figleaf )"
RDEPEND="${CDEPEND}
server? ( www-apps/trac )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
python_pkg_setup
DISTUTILS_GLOBAL_OPTIONS=("2.* $(use_with server master)")
enewgroup tracd
enewuser ${PN} -1 -1 /var/tmp/${PN} tracd
}
src_install() {
distutils_src_install
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
pkg_postinst() {
touch "${ROOT}"/var/log/${PN}.log
chown -f ${PN}:tracd "${ROOT}"/var/log/${PN}.log
}
|