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/sex/
Date: Tue, 11 Oct 2016 22:59:29
Message-Id: 1476226547.56acefb48dbafe5ac723b6cdc0a61af6b53575a9.wizardedit@gentoo
1 commit: 56acefb48dbafe5ac723b6cdc0a61af6b53575a9
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 11 21:50:18 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=56acefb4
7
8 games-misc/sex: 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/sex/sex-1.0-r1.ebuild | 29 +++++++++++++++++++++++++++++
17 1 file changed, 29 insertions(+)
18
19 diff --git a/games-misc/sex/sex-1.0-r1.ebuild b/games-misc/sex/sex-1.0-r1.ebuild
20 new file mode 100644
21 index 00000000..ce24d98
22 --- /dev/null
23 +++ b/games-misc/sex/sex-1.0-r1.ebuild
24 @@ -0,0 +1,29 @@
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="Spouts silly mad-lib-style porn-like text"
32 +HOMEPAGE="http://spatula.net/software/sex/"
33 +SRC_URI="http://spatula.net/software/sex/${P}.tar.gz"
34 +
35 +LICENSE="BSD"
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
38 +IUSE=""
39 +
40 +src_prepare() {
41 + default
42 + rm -f Makefile
43 +}
44 +
45 +src_compile() {
46 + emake sex
47 +}
48 +
49 +src_install() {
50 + dobin sex
51 + doman sex.6
52 + dodoc README
53 +}