diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-02-24 22:19:00 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-02-24 22:19:00 +0000 |
commit | c546e8161ef47598dcf0f1d935caf0c8aa4045fa (patch) | |
tree | 7977faa763b0048806fcf40168e68c0bb9d92c37 /games-fps/quakeforge | |
parent | Add another fix from upstream. (diff) | |
download | gentoo-2-c546e8161ef47598dcf0f1d935caf0c8aa4045fa.tar.gz gentoo-2-c546e8161ef47598dcf0f1d935caf0c8aa4045fa.tar.bz2 gentoo-2-c546e8161ef47598dcf0f1d935caf0c8aa4045fa.zip |
EAPI=2
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'games-fps/quakeforge')
-rw-r--r-- | games-fps/quakeforge/ChangeLog | 8 | ||||
-rw-r--r-- | games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild | 30 |
2 files changed, 19 insertions, 19 deletions
diff --git a/games-fps/quakeforge/ChangeLog b/games-fps/quakeforge/ChangeLog index 39a84c78e0a7..fffaf5f7c18b 100644 --- a/games-fps/quakeforge/ChangeLog +++ b/games-fps/quakeforge/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-fps/quakeforge -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quakeforge/ChangeLog,v 1.19 2008/02/15 01:12:38 wolf31o2 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quakeforge/ChangeLog,v 1.20 2009/02/24 22:19:00 mr_bones_ Exp $ + + 24 Feb 2009; Michael Sterrett <mr_bones_@gentoo.org> + quakeforge-0.5.5-r2.ebuild: + EAPI=2 15 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> quakeforge-0.5.5.ebuild: diff --git a/games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild b/games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild index 5022025af8b3..b2bb69d4c648 100644 --- a/games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild +++ b/games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild,v 1.2 2007/10/14 21:08:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/quakeforge/quakeforge-0.5.5-r2.ebuild,v 1.3 2009/02/24 22:19:00 mr_bones_ Exp $ -inherit eutils autotools games +EAPI=2 +inherit eutils games DESCRIPTION="A new 3d engine based off of id Softwares's legendary Quake and QuakeWorld game engine" HOMEPAGE="http://www.quakeforge.net/" @@ -38,18 +39,15 @@ DEPEND="${RDEPEND} sys-devel/bison sys-devel/flex" -src_unpack() { - unpack ${A} - cd "${S}" - epatch \ - "${FILESDIR}"/${P}-no-page-size.patch \ - "${FILESDIR}"/${PV}-ipv6.patch \ - "${FILESDIR}"/${P}-gcc41.patch \ - "${FILESDIR}"/${P}-keys.patch \ - "${FILESDIR}"/${P}-amd64.patch -} +PATCHES=( + "${FILESDIR}"/${P}-no-page-size.patch + "${FILESDIR}"/${PV}-ipv6.patch + "${FILESDIR}"/${P}-gcc41.patch + "${FILESDIR}"/${P}-keys.patch + "${FILESDIR}"/${P}-amd64.patch +) -src_compile() { +src_configure() { #i should do this at some point :x ... i guess if you disable all shared stuff #and enable all the static options explicitly, static works ... (or so ive been told) #if ! use static ; then @@ -105,9 +103,7 @@ src_compile() { --with-sharepath="${GAMES_DATADIR}"/quake1 \ --with-clients=${clients} \ --with-servers=${servers} \ - --with-tools=${tools} \ - || die - make || die "make failed" + --with-tools=${tools} } src_install() { |