summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-02-14 11:54:13 +0000
committerMichał Górny <mgorny@gentoo.org>2015-02-14 11:54:13 +0000
commitb6f83849e10c7488daffea2fcd37b462b3618c7f (patch)
tree82769b4e6c9f3f24626882ca4ba52ae6d4cfe624 /games-fps/quake3-osp
parentremove old (diff)
downloadgentoo-2-b6f83849e10c7488daffea2fcd37b462b3618c7f.tar.gz
gentoo-2-b6f83849e10c7488daffea2fcd37b462b3618c7f.tar.bz2
gentoo-2-b6f83849e10c7488daffea2fcd37b462b3618c7f.zip
Fix SRC_URI, add missing ||die. Bug #460312 with PR by Michael Mair-Keimberger.
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'games-fps/quake3-osp')
-rw-r--r--games-fps/quake3-osp/ChangeLog8
-rw-r--r--games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild12
2 files changed, 12 insertions, 8 deletions
diff --git a/games-fps/quake3-osp/ChangeLog b/games-fps/quake3-osp/ChangeLog
index 86fed1909d3b..eb35c898169e 100644
--- a/games-fps/quake3-osp/ChangeLog
+++ b/games-fps/quake3-osp/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-fps/quake3-osp
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-osp/ChangeLog,v 1.10 2009/10/10 17:28:02 nyhm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-osp/ChangeLog,v 1.11 2015/02/14 11:54:13 mgorny Exp $
+
+ 14 Feb 2015; Michał Górny <mgorny@gentoo.org> quake3-osp-1.03a-r1.ebuild:
+ Fix SRC_URI, add missing ||die. Bug #460312 with PR by Michael Mair-
+ Keimberger.
10 Oct 2009; Tristan Heaven <nyhm@gentoo.org> quake3-osp-1.03a-r1.ebuild:
Stable on amd64/x86
diff --git a/games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild b/games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild
index 0a08fa0c39c9..b196636dd0fd 100644
--- a/games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild
+++ b/games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild,v 1.5 2009/10/10 17:28:02 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-osp/quake3-osp-1.03a-r1.ebuild,v 1.6 2015/02/14 11:54:13 mgorny Exp $
EAPI=2
@@ -11,14 +11,14 @@ MOD_DIR="osp"
inherit games games-mods
HOMEPAGE="http://www.orangesmoothie.org/"
-SRC_URI="http://www.sunflow.com/orangesmoothie/downloads/osp-Quake3-${PV}_full.zip"
+SRC_URI="http://osp.dget.cc/orangesmoothie/downloads/osp-Quake3-${PV}_full.zip"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc x86"
IUSE="dedicated opengl"
src_prepare() {
- cd ${MOD_DIR}
- rm -f VoodooStats-ReadMe.txt *.exe
- rm -rf voodoo
+ cd ${MOD_DIR} || die
+ rm -f VoodooStats-ReadMe.txt *.exe || die
+ rm -rf voodoo || die
}