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 44C711382DF for ; Wed, 29 Jun 2016 22:54:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8ABD7E0912; Wed, 29 Jun 2016 22:54:29 +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 2A2FFE0912 for ; Wed, 29 Jun 2016 22:54:29 +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 9888C340CA5 for ; Wed, 29 Jun 2016 22:54:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25D87856 for ; Wed, 29 Jun 2016 22:54:25 +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: <1467240857.ce0efe07e55e9d2f09e0fa1c9f7f7bf5672d7c7d.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/mcrcon/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/mcrcon/mcrcon-0.0.5-r1.ebuild X-VCS-Directories: games-util/mcrcon/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: ce0efe07e55e9d2f09e0fa1c9f7f7bf5672d7c7d X-VCS-Branch: master Date: Wed, 29 Jun 2016 22:54:25 +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: 4689ddd8-8cb9-4597-b3c8-f1eccd399adc X-Archives-Hash: 604b275c3a466ea5f750ed6c0b89d402 commit: ce0efe07e55e9d2f09e0fa1c9f7f7bf5672d7c7d Author: Austin English gentoo org> AuthorDate: Wed Jun 29 22:37:08 2016 +0000 Commit: Austin English gentoo org> CommitDate: Wed Jun 29 22:54:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0efe07 games-util/mcrcon: remove depreacted games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.2.28 games-util/mcrcon/mcrcon-0.0.5-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/games-util/mcrcon/mcrcon-0.0.5-r1.ebuild b/games-util/mcrcon/mcrcon-0.0.5-r1.ebuild new file mode 100644 index 0000000..224180e --- /dev/null +++ b/games-util/mcrcon/mcrcon-0.0.5-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Remote connection client for Minecraft servers" +HOMEPAGE="http://sourceforge.net/projects/mcrcon/" +SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip" +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +S="${WORKDIR}" + +src_compile() { + # Flags taken from COMPILING.txt. + $(tc-getCC) ${CFLAGS} ${LDFLAGS} -std=gnu11 -pedantic -Wall -Wextra -o "${PN}" "${PN}.c" || die +} + +src_install() { + default + dobin "${PN}" +}