Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/caps: ChangeLog caps-20071115.ebuild
Date: Mon, 27 Oct 2008 20:44:50
Message-Id: E1KuYxC-0007B6-0B@stork.gentoo.org
1 tupone 08/10/27 20:44:45
2
3 Modified: ChangeLog
4 Added: caps-20071115.ebuild
5 Log:
6 Version bump. It includes an amd64 native library. Bug #158416
7 (Portage version: 2.1.4.5)
8
9 Revision Changes Path
10 1.14 games-emulation/caps/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/caps/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/caps/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/caps/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/caps/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 25 Dec 2007 13:04:37 -0000 1.13
23 +++ ChangeLog 27 Oct 2008 20:44:45 -0000 1.14
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/caps
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/caps/ChangeLog,v 1.13 2007/12/25 13:04:37 phreak Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/caps/ChangeLog,v 1.14 2008/10/27 20:44:45 tupone Exp $
30 +
31 +*caps-20071115 (27 Oct 2008)
32 +
33 + 27 Oct 2008; Tupone Alfredo <tupone@g.o> +caps-20071115.ebuild:
34 + Version bump. It includes an amd64 native library. Bug #158416
35
36 25 Dec 2007; Christian Heim <phreak@g.o> metadata.xml:
37 Removing dholm from metadata.xml as per #24623.
38
39
40
41 1.1 games-emulation/caps/caps-20071115.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/caps/caps-20071115.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/caps/caps-20071115.ebuild?rev=1.1&content-type=text/plain
45
46 Index: caps-20071115.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/caps/caps-20071115.ebuild,v 1.1 2008/10/27 20:44:45 tupone Exp $
51
52 inherit eutils multilib
53
54 DESCRIPTION="Support library that allows third party applications access and use C.A.P.S. images"
55 HOMEPAGE="http://www.softpres.org/"
56 SRC_URI="mirror://gentoo/ipfdevlib_linux-20060612.tgz
57 x86? ( ipflib_linux-i686-${PV}.tgz )
58 amd64? ( ipflib_linux-amd64-${PV}.tgz )
59 ppc? ( ipflib_linux-ppc-${PV}.tgz )
60 doc? ( mirror://gentoo/ipfdoc102a.zip )
61 mirror://gentoo/config_uae_ocs13_512c-512s.zip"
62
63 LICENSE="CAPS"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="doc"
67 RESTRICT="strip"
68
69 DEPEND="app-arch/unzip"
70 RDEPEND=""
71
72 S=${WORKDIR}
73
74 src_install() {
75 local myArch=${ARCH}
76
77 insinto /usr/include/caps
78 doins ipfdevlib_linux/include/caps/capsimage.h || die
79
80 case ${ARCH} in
81 ppc|amd64)
82 ;;
83 x86)
84 myArch=i686
85 ;;
86 *)
87 eerror "Unsupported platform"
88 ;;
89 esac
90 dolib.so ipflib_linux-${myArch}/libcapsimage.so.2.3 || die
91 dobin ipflib_linux-${myArch}/ipfinfo || die
92
93 dosym /usr/$(get_libdir)/libcapsimage.so.2.3 \
94 /usr/$(get_libdir)/libcapsimage.so.2
95
96 insinto /usr/share/${PN}
97 doins OCS_13_1Mb_800_600.uae || die
98 doins ipfdevlib_linux/examples/ipfinfo.c || die
99
100 use doc && dodoc CAPSLib102a-40.pdf
101 dodoc ipflib_linux-${myArch}/{HISTORY,README}
102 }