Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/hlsdk/
Date: Thu, 30 Jun 2016 22:29:40
Message-Id: 1467325765.65b1d2e036593a54e7f8a301570150458b839941.wizardedit@gentoo
1 commit: 65b1d2e036593a54e7f8a301570150458b839941
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 22:27:48 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 22:29:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b1d2e0
7
8 dev-games/hlsdk: remove deprecated games eclass
9
10 Also update to EAPI 6
11
12 Gentoo-Bug: https://bugs.gentoo.org/574082
13
14 Package-Manager: portage-2.2.28
15
16 dev-games/hlsdk/hlsdk-2.3-r1.ebuild | 25 +++++++++++++++++++++++++
17 1 file changed, 25 insertions(+)
18
19 diff --git a/dev-games/hlsdk/hlsdk-2.3-r1.ebuild b/dev-games/hlsdk/hlsdk-2.3-r1.ebuild
20 new file mode 100644
21 index 0000000..c10b456
22 --- /dev/null
23 +++ b/dev-games/hlsdk/hlsdk-2.3-r1.ebuild
24 @@ -0,0 +1,25 @@
25 +# Copyright 1999-2016 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Id$
28 +
29 +EAPI=6
30 +
31 +DESCRIPTION="Half-Life Software Development Kit for mod authors"
32 +HOMEPAGE="http://www.valvesoftware.com/hlsdk.htm"
33 +SRC_URI="http://www.metamod.org/files/sdk/${P}.tgz"
34 +
35 +LICENSE="ValveSDK"
36 +SLOT="0"
37 +KEYWORDS="~x86"
38 +IUSE=""
39 +
40 +src_prepare() {
41 + default
42 + find -iname '*.orig' -exec rm -f '{}' + || die
43 +}
44 +
45 +src_install() {
46 + insinto "$(get_libdir)"/${PN}
47 + doins -r multiplayer singleplayer
48 + dodoc metamod.hlsdk-2.3.txt metamod.hlsdk-2.3.patch
49 +}