Gentoo Archives: gentoo-commits

From: "Ian Stakenvicius (axs)" <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-fps/avp: avp-20070130-r2.ebuild ChangeLog
Date: Thu, 03 Jul 2014 20:24:26
Message-Id: 20140703202421.6D1BE2004E@flycatcher.gentoo.org
1 axs 14/07/03 20:24:21
2
3 Modified: ChangeLog
4 Added: avp-20070130-r2.ebuild
5 Log:
6 bumped EAPI to 5; converted deps to gx86-multilib
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
9
10 Revision Changes Path
11 1.14 games-fps/avp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/avp/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/avp/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/avp/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-fps/avp/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 3 May 2012 03:23:09 -0000 1.13
24 +++ ChangeLog 3 Jul 2014 20:24:21 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-fps/avp
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-fps/avp/ChangeLog,v 1.13 2012/05/03 03:23:09 jdhore Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-fps/avp/ChangeLog,v 1.14 2014/07/03 20:24:21 axs Exp $
31 +
32 +*avp-20070130-r2 (03 Jul 2014)
33 +
34 + 03 Jul 2014; Ian Stakenvicius (_AxS_) <axs@g.o>
35 + +avp-20070130-r2.ebuild:
36 + bumped EAPI to 5; converted deps to gx86-multilib
37
38 03 May 2012; Jeff Horelick <jdhore@g.o> avp-20070130-r1.ebuild:
39 dev-util/pkgconfig -> virtual/pkgconfig
40
41
42
43 1.1 games-fps/avp/avp-20070130-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/avp/avp-20070130-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/avp/avp-20070130-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: avp-20070130-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-fps/avp/avp-20070130-r2.ebuild,v 1.1 2014/07/03 20:24:21 axs Exp $
53
54 EAPI=5
55 inherit eutils games
56
57 DESCRIPTION="Linux port of Aliens vs Predator"
58 HOMEPAGE="http://www.icculus.org/avp/"
59 SRC_URI="mirror://gentoo/${P}.tar.bz2"
60
61 LICENSE="AvP"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="|| (
67 (
68 media-libs/openal[abi_x86_32(-)]
69 media-libs/libsdl[video,joystick,opengl,abi_x86_32(-)]
70 )
71 ( app-emulation/emul-linux-x86-sdl[-abi_x86_32(-)] )
72 )"
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig"
75
76 S=${WORKDIR}/${PN}
77
78 src_prepare() {
79 epatch \
80 "${FILESDIR}"/${P}-gcc42.patch \
81 "${FILESDIR}"/${P}-glibc2.10.patch
82 sed -i \
83 -e '/^CC /s:=:?=:' \
84 -e '/^CXX /s:=:?=:' \
85 -e "/^CFLAGS/s/-g.*/${CFLAGS}/" \
86 -e "/^LDLIBS/s/$/${LDFLAGS}/" \
87 -e "s:openal-config:pkg-config openal:" \
88 Makefile \
89 || die "sed failed"
90 }
91
92 src_install() {
93 newgamesbin AvP.bin AvP || die "newgamesbin failed"
94 dodoc README TODO
95 prepgamesdirs
96 }
97
98 pkg_postinst() {
99 games_pkg_postinst
100 elog "please follow the instructions in"
101 elog "/usr/share/doc/${PF}"
102 elog "to install the rest of the game"
103 }