diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 18:53:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 18:53:23 +0000 |
commit | f832b6aa8af70160dd49b2f91631e66e941b9dbe (patch) | |
tree | e28495f9d6e402f2d221775fbef168a3e40e3457 /games-util/umodpack | |
parent | Add local dv USE flag for mjpegtools. (diff) | |
download | gentoo-2-f832b6aa8af70160dd49b2f91631e66e941b9dbe.tar.gz gentoo-2-f832b6aa8af70160dd49b2f91631e66e941b9dbe.tar.bz2 gentoo-2-f832b6aa8af70160dd49b2f91631e66e941b9dbe.zip |
welcome to games-util
Diffstat (limited to 'games-util/umodpack')
-rw-r--r-- | games-util/umodpack/ChangeLog | 12 | ||||
-rw-r--r-- | games-util/umodpack/Manifest | 3 | ||||
-rw-r--r-- | games-util/umodpack/files/digest-umodpack-0.5_beta16 | 1 | ||||
-rw-r--r-- | games-util/umodpack/umodpack-0.5_beta16.ebuild | 34 |
4 files changed, 50 insertions, 0 deletions
diff --git a/games-util/umodpack/ChangeLog b/games-util/umodpack/ChangeLog new file mode 100644 index 000000000000..156f1b52ee9d --- /dev/null +++ b/games-util/umodpack/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for app-games/umodpack +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/ChangeLog,v 1.1 2003/09/10 18:53:23 vapier Exp $ + + 02 Aug 2003; Chris Gianelloni <wolf31o2@gentoo.org> + umodpack-0.5_beta16.ebuild: + Fixed to use mirror://sourceforge + +*umodpack-0.5_beta16 (23 Oct 2002) + + 23 Oct 2002; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/games-util/umodpack/Manifest b/games-util/umodpack/Manifest new file mode 100644 index 000000000000..1180e6f4ded0 --- /dev/null +++ b/games-util/umodpack/Manifest @@ -0,0 +1,3 @@ +MD5 33681e07fdc5fcbcfa86323d012baa09 files/digest-umodpack-0.5_beta16 73 +MD5 af3a44ec5853aadbc397fccfc6e5274a umodpack-0.5_beta16.ebuild 883 +MD5 32ce2896ab3defd7af27eb4619ffd56f ChangeLog 471 diff --git a/games-util/umodpack/files/digest-umodpack-0.5_beta16 b/games-util/umodpack/files/digest-umodpack-0.5_beta16 new file mode 100644 index 000000000000..a662097031ee --- /dev/null +++ b/games-util/umodpack/files/digest-umodpack-0.5_beta16 @@ -0,0 +1 @@ +MD5 3b13b271208fe72022e265960cda66ad umodpack-0.5b16-nogui.tar.gz 115424 diff --git a/games-util/umodpack/umodpack-0.5_beta16.ebuild b/games-util/umodpack/umodpack-0.5_beta16.ebuild new file mode 100644 index 000000000000..7f00f4518fb7 --- /dev/null +++ b/games-util/umodpack/umodpack-0.5_beta16.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/umodpack/umodpack-0.5_beta16.ebuild,v 1.1 2003/09/10 18:53:23 vapier Exp $ + +inherit perl-module + +MY_P="${P/_beta/b}" +DESCRIPTION="portable and useful [un]packer for Unreal Tournament's Umod files" +HOMEPAGE="http://umodpack.sourceforge.net/" +SRC_URI="mirror://sourceforge/umodpack/${MY_P}-nogui.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="x86 ppc" + +DEPEND="dev-lang/perl + dev-perl/Archive-Zip + dev-perl/Tie-IxHash + tcltk? ( dev-perl/perl-tk ) + X? ( virtual/x11 )" + +S=${WORKDIR}/${MY_P} + +src_compile() { + # remove the stupid perl modules since we already installed em + rm -rf {Archive-Zip,Compress-Zlib,Tie-IxHash}* + perl-module_src_compile +} + +src_install() { + perl-module_src_install + dobin umod + use X && dobin xumod +} |