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 3F129138331 for ; Sun, 27 May 2018 16:14:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18CCBE08EA; Sun, 27 May 2018 16:14:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E11BAE08EA for ; Sun, 27 May 2018 16:14:42 +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 D13C3335CB5 for ; Sun, 27 May 2018 16:14:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36F4329B for ; Sun, 27 May 2018 16:14:40 +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: <1527437670.6cad65a0f81556b71b5f87046bac2f134b5c1d39.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/yadex/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/yadex/yadex-1.7.0.ebuild X-VCS-Directories: games-misc/yadex/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 6cad65a0f81556b71b5f87046bac2f134b5c1d39 X-VCS-Branch: master Date: Sun, 27 May 2018 16:14:40 +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: fb1ebca5-5c1d-49d8-8f65-d04f3478df07 X-Archives-Hash: abb03a0515597871a52e1f8b9f8bbb91 commit: 6cad65a0f81556b71b5f87046bac2f134b5c1d39 Author: Pacho Ramos gentoo org> AuthorDate: Sun May 27 15:53:00 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun May 27 16:14:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cad65a0 games-misc/yadex: Drop old Package-Manager: Portage-2.3.38, Repoman-2.3.9 games-misc/yadex/yadex-1.7.0.ebuild | 51 ------------------------------------- 1 file changed, 51 deletions(-) diff --git a/games-misc/yadex/yadex-1.7.0.ebuild b/games-misc/yadex/yadex-1.7.0.ebuild deleted file mode 100644 index 306f0a38eae..00000000000 --- a/games-misc/yadex/yadex-1.7.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -DESCRIPTION="A Doom level (wad) editor" -HOMEPAGE="http://www.teaser.fr/~amajorel/yadex/" -SRC_URI="http://www.teaser.fr/~amajorel/yadex/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="" -RESTRICT="test" - -DEPEND="x11-libs/libX11" -RDEPEND="${DEPEND}" - -src_prepare() { - sed -i \ - -e '/iwad/s/local\///' \ - "${S}"/yadex.cfg \ - || die "sed yadex.cfg failed" - epatch "${FILESDIR}/${P}"-NULL-is-not-zero.patch \ - "${FILESDIR}/${P}"-elif.patch - # Force the patched file to be old, otherwise the compile fails - touch -t 197010101010 "${S}"/src/wadlist.cc - touch -t 197010101010 "${S}"/src/gfx.cc -} - -src_configure() { - # not an autoconf script - ./configure --prefix="/usr" || die "configure failed" -} - -src_compile() { - emake CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" -} - -src_install() { - dogamesbin obj/0/yadex - insinto "${GAMES_DATADIR}/${PN}/${PV}" - doins ygd/* - doman doc/yadex.6 - dodoc CHANGES FAQ README TODO VERSION - dohtml doc/* - insinto /etc/yadex/${PV} - doins yadex.cfg - prepgamesdirs -}