summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2014-03-26 09:51:50 +0000
committerUlrich Müller <ulm@gentoo.org>2014-03-26 09:51:50 +0000
commit4786ff1a87237d2618e10eed5957265598124227 (patch)
treede27c69a88351a417c8d31d833f4f368b32e6d88 /games-util/uz2unpack
parentStable for amd64 wrt bug #502916 (diff)
downloadgentoo-2-4786ff1a87237d2618e10eed5957265598124227.tar.gz
gentoo-2-4786ff1a87237d2618e10eed5957265598124227.tar.bz2
gentoo-2-4786ff1a87237d2618e10eed5957265598124227.zip
Fix LICENSE, bug 505782. Update to EAPI 5.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'games-util/uz2unpack')
-rw-r--r--games-util/uz2unpack/ChangeLog7
-rw-r--r--games-util/uz2unpack/uz2unpack-0.1.ebuild13
2 files changed, 12 insertions, 8 deletions
diff --git a/games-util/uz2unpack/ChangeLog b/games-util/uz2unpack/ChangeLog
index 0acaabe0a4a4..4383d01dca39 100644
--- a/games-util/uz2unpack/ChangeLog
+++ b/games-util/uz2unpack/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-util/uz2unpack
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.6 2009/11/03 21:40:12 nyhm Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.7 2014/03/26 09:51:50 ulm Exp $
+
+ 26 Mar 2014; Ulrich Müller <ulm@gentoo.org> uz2unpack-0.1.ebuild:
+ Fix LICENSE, bug 505782. Update to EAPI 5.
03 Nov 2009; Tristan Heaven <nyhm@gentoo.org> uz2unpack-0.1.ebuild:
Respect LDFLAGS
diff --git a/games-util/uz2unpack/uz2unpack-0.1.ebuild b/games-util/uz2unpack/uz2unpack-0.1.ebuild
index 47270ff0b538..1272dc689167 100644
--- a/games-util/uz2unpack/uz2unpack-0.1.ebuild
+++ b/games-util/uz2unpack/uz2unpack-0.1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v 1.8 2009/11/03 21:40:12 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v 1.9 2014/03/26 09:51:50 ulm Exp $
+
+EAPI=5
inherit toolchain-funcs
@@ -8,18 +10,17 @@ DESCRIPTION="UZ2 Decompressor for UT2003/UT2004"
HOMEPAGE="http://icculus.org/cgi-bin/ezmlm/ezmlm-cgi?42:mss:1013:200406:kikgppboefcimdbadcdo"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
-LICENSE="as-is"
+LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
-IUSE=""
DEPEND="sys-libs/zlib"
src_compile() {
- emake CC="$(tc-getCC)" LDLIBS=-lz ${PN} || die "emake failed"
+ emake CC="$(tc-getCC)" LDLIBS=-lz ${PN}
}
src_install() {
- dobin ${PN} || die "dobin failed"
+ dobin ${PN}
dodoc README
}