commit: 62227e71dcc4c9c4ef4df4f341c7a36c1a07da92 Author: Austin English <wizardedit <AT> gentoo <DOT> org> AuthorDate: Fri Aug 5 16:45:10 2016 +0000 Commit: Austin English <wizardedit <AT> gentoo <DOT> org> CommitDate: Fri Aug 5 17:38:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62227e71
games-server/bf1942-lnxded: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 .../bf1942-lnxded/bf1942-lnxded-1.61-r1.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/games-server/bf1942-lnxded/bf1942-lnxded-1.61-r1.ebuild b/games-server/bf1942-lnxded/bf1942-lnxded-1.61-r1.ebuild new file mode 100644 index 0000000..a199aaf --- /dev/null +++ b/games-server/bf1942-lnxded/bf1942-lnxded-1.61-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils unpacker + +DESCRIPTION="dedicated server for Battlefield 1942" +HOMEPAGE="http://www.battlefield.com/battlefield-1942" +SRC_URI="http://ftp.games.skynet.be/pub/misc/${PN/-/_}-1.6-rc2.run + http://ftp.games.skynet.be/pub/misc/bf1942-update-${PV}.tar.gz" + +LICENSE="bf1942-lnxded" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +RESTRICT="mirror bindist strip" + +S=${WORKDIR} + +dir="/opt/bf1942" +Ddir="${D}/${dir}" + +QA_PREBUILT="${dir}/*.so ${dir}/bf1942_lnxded.*" + +src_unpack() { + mkdir bf1942 || die + pushd bf1942 || die + unpack_makeself ${PN/-/_}-1.6-rc2.run + popd || die + unpack bf1942-update-${PV}.tar.gz +} + +src_install() { + dodir "${dir}" + mv -f "${S}"/bf1942/* "${S}" || die + rm -rf "${S}"/bf1942 || die + + mv "${S}"/* "${Ddir}" || die + dosym bf1942_lnxded.dynamic "${dir}"/bf1942_lnxded + make_wrapper ${PN} ./bf1942_lnxded "${dir}" +}
