You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
954 B
40 lines
954 B
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/games-server/monopd/monopd-0.9.8.ebuild,v 1.3 2015/05/10 18:52:41 nimiux Exp $
|
|
|
|
EAPI=5
|
|
inherit autotools eutils systemd games
|
|
|
|
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 ~ppc x86"
|
|
IUSE="systemd"
|
|
|
|
RDEPEND="systemd? ( sys-apps/systemd )"
|
|
DEPEND="${RDEPEND}
|
|
>=sys-libs/libmath++-0.0.3"
|
|
|
|
src_prepare() {
|
|
sed "s:GENTOO_DIR:\"${GAMES_BINDIR}\":" \
|
|
"${FILESDIR}"/monopd.in > "${T}"/monopd || die
|
|
sed -i \
|
|
-e '/C_SUBST(CXXFLAGS/s/CFLAGS/CXXFLAGS/' \
|
|
configure.ac || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
egamesconf $(use_with systemd systemd-daemon)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
doinitd "${T}"/monopd
|
|
systemd_dounit doc/systemd/monopd.s*
|
|
prepgamesdirs
|
|
}
|