blob: 278d68841fd1bd8b01cd4113dd3a33ce65a22229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-1.9.8.4.ebuild,v 1.5 2005/06/05 11:36:20 hansmi 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="ppc x86"
IUSE=""
DEPEND="virtual/libc
sys-libs/zlib"
S="${WORKDIR}/${MY_P}/src"
src_compile() {
myconf=""
if [ ! -e /usr/include/sys/io.h ]; then
ewarn "Disabling support for parallel port"
myconf="${myconf} --disable-parallel"
fi
econf ${myconf} || die "configure failed"
emake || die "build failed"
}
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"
}
|