From 0283d05ca2837753f4cc01fa026ed73c97ad8600 Mon Sep 17 00:00:00 2001 From: Austin English Date: Fri, 5 Aug 2016 12:36:12 -0500 Subject: games-server/monopd: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 --- games-server/monopd/monopd-0.10.2-r1.ebuild | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 games-server/monopd/monopd-0.10.2-r1.ebuild (limited to 'games-server/monopd') diff --git a/games-server/monopd/monopd-0.10.2-r1.ebuild b/games-server/monopd/monopd-0.10.2-r1.ebuild new file mode 100644 index 000000000000..d736ef719f40 --- /dev/null +++ b/games-server/monopd/monopd-0.10.2-r1.ebuild @@ -0,0 +1,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* +} -- cgit v1.2.3-65-gdbad