From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF88D13832E for ; Fri, 5 Aug 2016 17:39:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BC1F21C098; Fri, 5 Aug 2016 17:39:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 265FB21C098 for ; Fri, 5 Aug 2016 17:39:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D0EB340BA2 for ; Fri, 5 Aug 2016 17:38:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A59802449 for ; Fri, 5 Aug 2016 17:38:56 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1470418726.0283d05ca2837753f4cc01fa026ed73c97ad8600.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-server/monopd/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-server/monopd/monopd-0.10.2-r1.ebuild X-VCS-Directories: games-server/monopd/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 0283d05ca2837753f4cc01fa026ed73c97ad8600 X-VCS-Branch: master Date: Fri, 5 Aug 2016 17:38:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 675644eb-af18-45d4-b9d4-038330ab04d8 X-Archives-Hash: 9ab1f7da61535d834b64fce9b52ac9c9 commit: 0283d05ca2837753f4cc01fa026ed73c97ad8600 Author: Austin English gentoo org> AuthorDate: Fri Aug 5 17:36:12 2016 +0000 Commit: Austin English gentoo org> CommitDate: Fri Aug 5 17:38:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0283d05c 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(+) 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 0000000..d736ef7 --- /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* +}