Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/bsod/
Date: Tue, 11 Oct 2016 22:59:29
Message-Id: 1476226547.2e52ea0a81f1f4d310200fb34a715d5143c0655d.wizardedit@gentoo
1 commit: 2e52ea0a81f1f4d310200fb34a715d5143c0655d
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 11 20:58:49 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 11 22:55:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e52ea0a
7
8 games-misc/bsod: 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.3.0
15
16 games-misc/bsod/bsod-0.1-r1.ebuild | 33 +++++++++++++++++++++++++++++++++
17 1 file changed, 33 insertions(+)
18
19 diff --git a/games-misc/bsod/bsod-0.1-r1.ebuild b/games-misc/bsod/bsod-0.1-r1.ebuild
20 new file mode 100644
21 index 00000000..4d4472b
22 --- /dev/null
23 +++ b/games-misc/bsod/bsod-0.1-r1.ebuild
24 @@ -0,0 +1,33 @@
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 +inherit eutils toolchain-funcs
31 +
32 +DESCRIPTION="This program will let your UNIX user experience the authentic Microsoft Windows experience"
33 +HOMEPAGE="http://www.vanheusden.com/bsod/"
34 +SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
35 +
36 +LICENSE="GPL-2"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +
40 +RDEPEND="sys-libs/ncurses:0"
41 +DEPEND="
42 + ${RDEPEND}
43 + virtual/pkgconfig"
44 +
45 +PATCHES=(
46 + "${FILESDIR}"/${P}-Makefile.patch
47 +)
48 +
49 +src_prepare() {
50 + default
51 + tc-export PKG_CONFIG
52 +}
53 +
54 +src_install() {
55 + dobin ${PN}
56 + dodoc Changes
57 +}