Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-util/umodpack: umodpack-0.5_beta16-r2.ebuild ChangeLog
Date: Sun, 01 Sep 2013 15:57:59
Message-Id: 20130901155752.79C8C20036@flycatcher.gentoo.org
1 idella4 13/09/01 15:57:52
2
3 Modified: ChangeLog
4 Added: umodpack-0.5_beta16-r2.ebuild
5 Log:
6 revbump -> EAPI 5, add invocation of tests
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.13 games-util/umodpack/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/umodpack/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/umodpack/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/umodpack/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-util/umodpack/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 5 Oct 2012 20:39:51 -0000 1.12
24 +++ ChangeLog 1 Sep 2013 15:57:52 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-util/umodpack
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/ChangeLog,v 1.12 2012/10/05 20:39:51 mr_bones_ Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/ChangeLog,v 1.13 2013/09/01 15:57:52 idella4 Exp $
31 +
32 +*umodpack-0.5_beta16-r2 (01 Sep 2013)
33 +
34 + 01 Sep 2013; Ian Delaney <idella4@g.o> +umodpack-0.5_beta16-r2.ebuild:
35 + revbump -> EAPI 5, add invocation of tests
36
37 05 Oct 2012; Michael Sterrett <mr_bones_@g.o>
38 umodpack-0.5_beta16-r1.ebuild:
39
40
41
42 1.1 games-util/umodpack/umodpack-0.5_beta16-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/umodpack/umodpack-0.5_beta16-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/umodpack/umodpack-0.5_beta16-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: umodpack-0.5_beta16-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/umodpack-0.5_beta16-r2.ebuild,v 1.1 2013/09/01 15:57:52 idella4 Exp $
52
53 EAPI=5
54
55 inherit perl-module toolchain-funcs
56
57 MY_P=${P/_beta/b}
58 DESCRIPTION="portable and useful [un]packer for Unreal Tournament's Umod files"
59 HOMEPAGE="http://www.oldunreal.com/wiki/index.php?title=UmodPack"
60 SRC_URI="mirror://gentoo/${MY_P}-allinone.tar.gz"
61
62 LICENSE="Artistic"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="tk"
66
67 DEPEND="virtual/perl-IO-Compress
68 dev-perl/Archive-Zip
69 dev-perl/Tie-IxHash
70 tk? ( dev-perl/perl-tk )"
71
72 S=${WORKDIR}/${MY_P}
73 SRC_TEST="do parallel"
74
75 src_prepare() {
76 # remove the stupid perl modules since we already installed em
77 rm -rf {Archive-Zip,Compress-Zlib,Tie-IxHash,Tk}* || die
78 }
79
80 src_compile() {
81 perl-module_src_compile
82
83 cd umr-0.3 || die
84 emake DEBUG=0 CFLAGS="${CFLAGS}" CC="$(tc-getCC)"
85 }
86
87 src_install() {
88 mydoc="Changes"
89 perl-module_src_install
90 dobin umod umr-0.3/umr
91 if use tk ; then
92 dobin xumod
93 fi
94 }