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 310521382C5 for ; Wed, 2 May 2018 19:28:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ED72E0ACF; Wed, 2 May 2018 19:28:37 +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 ECDBFE0ACF for ; Wed, 2 May 2018 19:28:36 +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 B96B2335C8C for ; Wed, 2 May 2018 19:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68BD941 for ; Wed, 2 May 2018 19:28:32 +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: <1525289304.60099bc6725b60e2b45cbdf25f9db2c214b245e3.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/uglygs/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/uglygs/uglygs-0_rc11.ebuild X-VCS-Directories: games-util/uglygs/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 60099bc6725b60e2b45cbdf25f9db2c214b245e3 X-VCS-Branch: master Date: Wed, 2 May 2018 19:28:32 +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: 74d3367d-7612-487f-8eb0-0ba82650d49f X-Archives-Hash: 575a98c47ca18d7c8ef206b95b49a106 commit: 60099bc6725b60e2b45cbdf25f9db2c214b245e3 Author: Pacho Ramos gentoo org> AuthorDate: Wed May 2 19:27:14 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed May 2 19:28:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60099bc6 games-util/uglygs: Drop old Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-util/uglygs/uglygs-0_rc11.ebuild | 62 ---------------------------------- 1 file changed, 62 deletions(-) diff --git a/games-util/uglygs/uglygs-0_rc11.ebuild b/games-util/uglygs/uglygs-0_rc11.ebuild deleted file mode 100644 index 8ce6738b693..00000000000 --- a/games-util/uglygs/uglygs-0_rc11.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -MY_P=${P/0_/} -DESCRIPTION="quickly searches the network for game servers" -HOMEPAGE="http://uglygs.uglypunk.com/" -SRC_URI="ftp://ftp.uglypunk.com/uglygs/current/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~hppa ~x86" -IUSE="" - -DEPEND="net-analyzer/rrdtool[graph] - dev-lang/perl" -RDEPEND=${DEPEND} - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${PV}-uglygs.conf.patch - sed -i \ - -e "s:GENTOO_DIR:$(games_get_libdir)/${PN}:" uglygs.conf || die - epatch "${FILESDIR}"/${PV}-uglygs.pl.patch - sed -i \ - -e "s:GENTOO_DIR:${GAMES_SYSCONFDIR}:" uglygs.pl || die - sed -i \ - -e "s/strndup/${PN}_strndup/" qstat/qstat.c || die -} - -src_compile() { - emake -C qstat CFLAGS="${CFLAGS}" -} - -src_install() { - insinto "${GAMES_SYSCONFDIR}" - doins uglygs.conf qstat/qstat.cfg - - dogamesbin uglygs.pl - - insinto "$(games_get_libdir)"/${PN} - doins -r data templates tmp - insinto "$(games_get_libdir)"/${PN}/images - doins -r images/{avp2,bds,default.gif,hls,j2s,mhs,q3s,rws,sf2s,uns,vcs} - dosym bds "$(games_get_libdir)"/${PN}/images/bdl - keepdir "$(games_get_libdir)"/${PN}/tmp - - exeinto "$(games_get_libdir)"/${PN} - doexe qstat/qstat - - dodoc CHANGES README - - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - elog "Dont forget to setup ${GAMES_SYSCONFDIR}/uglygs.conf and ${GAMES_SYSCONFDIR}/qstat.cfg" -}