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 B44BC1382C5 for ; Sun, 29 Apr 2018 11:26:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF901E09A7; Sun, 29 Apr 2018 11:26:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8E05EE09A7 for ; Sun, 29 Apr 2018 11:26:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73F16335CA1 for ; Sun, 29 Apr 2018 11:26:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62B072B1 for ; Sun, 29 Apr 2018 11:26:48 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1525001176.065b5fad6b7a57c8dafaa7a9f3f7f5b83214f157.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/mamory/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/mamory/mamory-0.2.25-r1.ebuild X-VCS-Directories: games-emulation/mamory/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 065b5fad6b7a57c8dafaa7a9f3f7f5b83214f157 X-VCS-Branch: master Date: Sun, 29 Apr 2018 11:26:48 +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: 39510163-0a66-4619-83c7-ca3f15911393 X-Archives-Hash: af198330ac02285669610877f49c653e commit: 065b5fad6b7a57c8dafaa7a9f3f7f5b83214f157 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 29 11:07:15 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 29 11:26:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=065b5fad games-emulation/mamory: Stop using games.eclass Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-emulation/mamory/mamory-0.2.25-r1.ebuild | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/games-emulation/mamory/mamory-0.2.25-r1.ebuild b/games-emulation/mamory/mamory-0.2.25-r1.ebuild new file mode 100644 index 00000000000..3f2f840637e --- /dev/null +++ b/games-emulation/mamory/mamory-0.2.25-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools flag-o-matic + +DESCRIPTION="ROM management tools and library" +HOMEPAGE="http://mamory.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/expat" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + # Make sure the system expat is used + sed -i \ + -e 's/#ifdef.*SYSEXPAT/#if 1/' \ + mamory/amlxml.c mamory/amlxml.h || die + + # Remove hardcoded CFLAGS options + sed -i \ + -e '/AC_ARG_ENABLE(debug,/ {N;N;N;d}' \ + configure.ac || die + + # Make it possible for eautoreconf to fix fPIC etc. + sed -i \ + -e '/libcommon_la_LDFLAGS= -static/d' \ + common/Makefile.am || die + + AT_M4DIR="config" eautoreconf + append-cflags -std=gnu89 # build with gcc5 (bug #570500) + + +} + +src_configure() { + econf \ + --includedir=/usr/include \ + --disable-static +} + +src_install() { + HTML_DOCS="DOCS/mamory.html" default + find "${D}" -name '*.la' -delete || die +}