diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-06-26 15:47:49 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-06-26 15:47:49 +0000 |
commit | 54842eeb16ba4c7a8947eaaa86e5e610f8de9d69 (patch) | |
tree | 15a5aa3a95987d8120de770dad2d1962035a01cf /games-util | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-54842eeb16ba4c7a8947eaaa86e5e610f8de9d69.tar.gz gentoo-2-54842eeb16ba4c7a8947eaaa86e5e610f8de9d69.tar.bz2 gentoo-2-54842eeb16ba4c7a8947eaaa86e5e610f8de9d69.zip |
Initial import. Ebuild by me.
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/uz2unpack/ChangeLog | 9 | ||||
-rw-r--r-- | games-util/uz2unpack/Manifest | 2 | ||||
-rw-r--r-- | games-util/uz2unpack/files/digest-uz2unpack-0.1 | 1 | ||||
-rw-r--r-- | games-util/uz2unpack/metadata.xml | 9 | ||||
-rw-r--r-- | games-util/uz2unpack/uz2unpack-0.1.ebuild | 27 |
5 files changed, 48 insertions, 0 deletions
diff --git a/games-util/uz2unpack/ChangeLog b/games-util/uz2unpack/ChangeLog new file mode 100644 index 000000000000..c6a4ce80d5f6 --- /dev/null +++ b/games-util/uz2unpack/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for games-util/uz2unpack +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.1 2004/06/26 15:47:49 wolf31o2 Exp $ + +*uz2unpack-0.1 (26 Jun 2004) + + 26 Jun 2004; Chris Gianelloni <wolf31o2@gentoo.org> +uz2unpack-0.1.ebuild: + Initial import. Ebuild by me. + diff --git a/games-util/uz2unpack/Manifest b/games-util/uz2unpack/Manifest new file mode 100644 index 000000000000..9336f0ea9758 --- /dev/null +++ b/games-util/uz2unpack/Manifest @@ -0,0 +1,2 @@ +MD5 a7b76c2e716b877aba0f50c81e534716 uz2unpack-0.1.ebuild 598 +MD5 7b0307cbdb762204f2f77ffa967c2744 files/digest-uz2unpack-0.1 64 diff --git a/games-util/uz2unpack/files/digest-uz2unpack-0.1 b/games-util/uz2unpack/files/digest-uz2unpack-0.1 new file mode 100644 index 000000000000..7d48d41551e9 --- /dev/null +++ b/games-util/uz2unpack/files/digest-uz2unpack-0.1 @@ -0,0 +1 @@ +MD5 6e853f5e33cfbfc39249e83aa85d72fe uz2unpack-0.1.tar.bz2 1483 diff --git a/games-util/uz2unpack/metadata.xml b/games-util/uz2unpack/metadata.xml new file mode 100644 index 000000000000..fe08918e6837 --- /dev/null +++ b/games-util/uz2unpack/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +<maintainer> + <email>wolf31o2@gentoo.org</email> + <name>Chris Gianelloni</name> +</maintainer> +</pkgmetadata> diff --git a/games-util/uz2unpack/uz2unpack-0.1.ebuild b/games-util/uz2unpack/uz2unpack-0.1.ebuild new file mode 100644 index 000000000000..739f1e3a9f87 --- /dev/null +++ b/games-util/uz2unpack/uz2unpack-0.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/06/26 15:47:49 wolf31o2 Exp $ + +DESCRIPTION="UZ2 Decompressor for UT2003/UT2004" +HOMEPAGE="http://icculus.org/cgi-bin/ezmlm/ezmlm-cgi?42:mss:1013:200406:kikgppboefcimdbadcdo" +SRC_URI="http://dev.gentoo.org/~wolf31o2/${PN}/${P}.tar.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~amd64" +RESTRICT="" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_compile() { + gcc -o ${PN} -Wall ${PN}.c -lz || die "Error compiling" +} + +src_install() { + dodir /usr/bin + exeinto /usr/bin + doexe uz2unpack + dodoc README +} |