blob: d736ef719f40c3b280e764458a0b9d30fdce935e (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit autotools eutils systemd
DESCRIPTION="server for atlantik games"
HOMEPAGE="http://gtkatlantic.gradator.net/"
SRC_URI="http://download.tuxfamily.org/gtkatlantic/monopd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="systemd"
RDEPEND="systemd? ( sys-apps/systemd )"
DEPEND="${RDEPEND}
>=dev-cpp/muParser-2
dev-libs/utfcpp"
src_prepare() {
default
sed "s:GENTOO_DIR:\"/usr/bin\":" \
"${FILESDIR}"/monopd.in > "${T}"/monopd || die
sed -i \
-e "s:/usr/sbin:/usr/bin:" \
doc/systemd/monopd.service || die
sed -i \
-e '/C_SUBST(CXXFLAGS/s/CFLAGS/CXXFLAGS/' \
configure.ac || die
eautoreconf
}
src_configure() {
econf $(use_with systemd systemd-daemon)
}
src_install() {
default
doinitd "${T}"/monopd
systemd_dounit doc/systemd/monopd.s*
}
|