ChangeLog

# ChangeLog for games-util/umodpack
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/ChangeLog,v 1.9 2007/04/24 14:35:00 nyhm Exp $

24 Apr 2007; Tristan Heaven
umodpack-0.5_beta16-r1.ebuild:
Add missing dev-perl/Compress-Zlib dependency, bug #175815

05 Nov 2006; Tristan Heaven
umodpack-0.5_beta16-r1.ebuild:
Change "tcltk" USE flag to "tk", bug #17808

09 Jun 2006; Chris Gianelloni
umodpack-0.5_beta16-r1.ebuild:
Fixed up IUSE and closing bug #135977.

*umodpack-0.5_beta16-r1 (09 May 2005)

09 May 2005; Mike Frysinger
+umodpack-0.5_beta16-r1.ebuild:
Fix by Olivier Crete to install the gui when USE=X #78035 by Joel
Konkle-Parker.

27 Sep 2004; Jeremy Huddleston
umodpack-0.5_beta16.ebuild:
Added to ~amd64.

12 Apr 2004; Chris Gianelloni
umodpack-0.5_beta16.ebuild:
Added blank IUSE.

02 Aug 2003; Chris Gianelloni
umodpack-0.5_beta16.ebuild:
Fixed to use mirror://sourceforge

*umodpack-0.5_beta16 (23 Oct 2002)

23 Oct 2002; Mike Frysinger :
Initial import. Ebuild submitted by me.

Manifest

DIST umodpack-0.5b16-allinone.tar.gz 3605080 RMD160 9305ad118a68ab2dab9849ad017f408f10e26e6d SHA1 c0623ccfa5521031e8dd6c7c0cb78e20f9a2191a SHA256 e4b291c333812efba65277feff45d7da132515a7945780f7df3b127793f9dedd
EBUILD umodpack-0.5_beta16-r1.ebuild 1137 RMD160 01b189d7c68fc3e0884dbd7a0d048708d51f4914 SHA1 5692fda16647e530bc4d891d12a2777cfc6cab9f SHA256 be904542434d3c35885a4aa861369d5df13d60cb14fd0236c87323a560fb98be
MISC ChangeLog 1281 RMD160 3e62c2fb8c6b11d950db212b20891ff1f1e9ae91 SHA1 99952913d9b1e5d6c3d417025f1e55998579c61d SHA256 e32868e5a2ae47efbc0de645046df52f1bd42d93d292e39dbe433dca2c60ddf8
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3

metadata.xml




games

umodpack-0.5_beta16-r1.ebuild

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/umodpack-0.5_beta16-r1.ebuild,v 1.5 2007/04/24 14:35:00 nyhm Exp $

inherit perl-module toolchain-funcs

MY_P=${P/_beta/b}
DESCRIPTION="portable and useful [un]packer for Unreal Tournament's Umod files"
HOMEPAGE="http://umodpack.sourceforge.net/"
SRC_URI="http://umodpack.sourceforge.net/${MY_P}-allinone.tar.gz"

LICENSE="Artistic"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="tk"

DEPEND="dev-lang/perl
dev-perl/Compress-Zlib
dev-perl/Archive-Zip
dev-perl/Tie-IxHash
tk? ( dev-perl/perl-tk )"

S=${WORKDIR}/${MY_P}

src_unpack() {
unpack ${A}
cd "${S}"
# remove the stupid perl modules since we already installed em
rm -rf {Archive-Zip,Compress-Zlib,Tie-IxHash,Tk}*
}

src_compile() {
perl-module_src_compile

cd umr-0.3
emake DEBUG=0 CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die "umr build failed"
}

src_install() {
mydoc="Changes"
perl-module_src_install
dobin umod umr-0.3/umr || die "umod/umr failed"
if use tk ; then
dobin xumod || die "xumod failed"
fi
}