diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-25 19:23:36 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-25 19:23:36 +0000 |
commit | e87550d204eff3d7d02354df5e37e1bfe51abc64 (patch) | |
tree | b5f9c241325611f44a9b127316dc931afb455442 /games-util/ucon64 | |
parent | reset execopts after setuid install of crontab to prevent init.d/dcron from b... (diff) | |
download | gentoo-2-e87550d204eff3d7d02354df5e37e1bfe51abc64.tar.gz gentoo-2-e87550d204eff3d7d02354df5e37e1bfe51abc64.tar.bz2 gentoo-2-e87550d204eff3d7d02354df5e37e1bfe51abc64.zip |
initial commit (bug #42078)
Diffstat (limited to 'games-util/ucon64')
-rw-r--r-- | games-util/ucon64/ChangeLog | 11 | ||||
-rw-r--r-- | games-util/ucon64/Manifest | 2 | ||||
-rw-r--r-- | games-util/ucon64/files/digest-ucon64-1.9.8.3 | 1 | ||||
-rw-r--r-- | games-util/ucon64/metadata.xml | 9 | ||||
-rw-r--r-- | games-util/ucon64/ucon64-1.9.8.3.ebuild | 44 |
5 files changed, 67 insertions, 0 deletions
diff --git a/games-util/ucon64/ChangeLog b/games-util/ucon64/ChangeLog new file mode 100644 index 000000000000..b2cea3049a83 --- /dev/null +++ b/games-util/ucon64/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for games-util/ucon64 +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ChangeLog,v 1.1 2004/02/25 19:23:36 mr_bones_ Exp $ + +*ucon64-1.9.8.3 (25 Feb 2004) + + 25 Feb 2004; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml, + ucon64-1.9.8.3.ebuild: + initial commit; ebuild submitted by Luca Marra and heavily modified (bug + #42078) + diff --git a/games-util/ucon64/Manifest b/games-util/ucon64/Manifest new file mode 100644 index 000000000000..56c7ab3670ec --- /dev/null +++ b/games-util/ucon64/Manifest @@ -0,0 +1,2 @@ +MD5 a3052c42475ba1390e9a77ab496724ae ucon64-1.9.8.3.ebuild 529 +MD5 66cf7a262eb6c7218ec040aef036f42e files/digest-ucon64-1.9.8.3 70 diff --git a/games-util/ucon64/files/digest-ucon64-1.9.8.3 b/games-util/ucon64/files/digest-ucon64-1.9.8.3 new file mode 100644 index 000000000000..c70362e8ba0f --- /dev/null +++ b/games-util/ucon64/files/digest-ucon64-1.9.8.3 @@ -0,0 +1 @@ +MD5 b15e81335a8710b2bed61c1307cad82f ucon64-1.9.8-3-src.tar.gz 884240 diff --git a/games-util/ucon64/metadata.xml b/games-util/ucon64/metadata.xml new file mode 100644 index 000000000000..1cef6e243af3 --- /dev/null +++ b/games-util/ucon64/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>games@gentoo.org</email> +<name>Games Team</name> +</maintainer> +</pkgmetadata> diff --git a/games-util/ucon64/ucon64-1.9.8.3.ebuild b/games-util/ucon64/ucon64-1.9.8.3.ebuild new file mode 100644 index 000000000000..d9dd64db49c6 --- /dev/null +++ b/games-util/ucon64/ucon64-1.9.8.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-1.9.8.3.ebuild,v 1.1 2004/02/25 19:23:36 mr_bones_ Exp $ + +MAJ_PV=${PV:0:5} +MIN_PV=${PV:6:7} +MY_P="${PN}-${MAJ_PV}-${MIN_PV}-src" + +DESCRIPTION="The backup tool and wonderful emulator's Swiss Army knife program" +HOMEPAGE="http://ucon64.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/glibc + sys-libs/zlib" + +S="${WORKDIR}/${MY_P}/src" + +src_install() { + dobin ucon64 || die "dobin failed" + dolib.so libdiscmage/discmage.so || die "dolib.so failed" + dodoc GoodCodes.txt || die "dodoc failed" + dohtml -x src -r -A png,jpg ../ || die "dohtml failed" +} + +pkg_postinst() { + echo + einfo "In order to use ${PN}, please create the directory ~/.ucon64/dat" + einfo "The command to do that is:" + einfo " mkdir -p ~/.ucon64/dat" + einfo "Then, you can copy your DAT file collection to ~/.ucon64/dat" + echo + einfo "To enable Discmage support, cp /usr/lib/discmage.so to ~/.ucon64" + einfo "The command to do that is:" + einfo " cp /usr/lib/discmage.so ~/.ucon64/" + echo + einfo "Be sure to check ~/.ucon64rc for some options after" + einfo "you've run uCON64 for the first time" + +} |