Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/vice: ChangeLog vice-2.1.ebuild
Date: Sun, 25 Jan 2009 03:59:06
Message-Id: E1LQw9G-00010u-Bi@stork.gentoo.org
1 mr_bones_ 09/01/25 03:59:02
2
3 Modified: ChangeLog
4 Added: vice-2.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
8
9 Revision Changes Path
10 1.61 app-emulation/vice/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/vice/ChangeLog?rev=1.61&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/vice/ChangeLog?rev=1.61&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/vice/ChangeLog?r1=1.60&r2=1.61
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v
19 retrieving revision 1.60
20 retrieving revision 1.61
21 diff -u -r1.60 -r1.61
22 --- ChangeLog 11 Aug 2008 19:30:00 -0000 1.60
23 +++ ChangeLog 25 Jan 2009 03:59:02 -0000 1.61
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emulation/vice
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.60 2008/08/11 19:30:00 mr_bones_ Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.61 2009/01/25 03:59:02 mr_bones_ Exp $
30 +
31 +*vice-2.1 (25 Jan 2009)
32 +
33 + 25 Jan 2009; Michael Sterrett <mr_bones_@g.o> +vice-2.1.ebuild:
34 + version bump
35
36 *vice-2.0 (11 Aug 2008)
37
38
39
40
41 1.1 app-emulation/vice/vice-2.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/vice/vice-2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/vice/vice-2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vice-2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-2.1.ebuild,v 1.1 2009/01/25 03:59:02 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils games
54
55 DESCRIPTION="The Versatile Commodore 8-bit Emulator"
56 HOMEPAGE="http://www.viceteam.org/"
57 SRC_URI="http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
62 IUSE="Xaw3d alsa arts esd gnome nls png readline resid sdl ipv6 mmap oss zlib X gif jpeg xv dga xrandr"
63
64 RDEPEND="
65 x11-libs/libX11
66 x11-libs/libXext
67 x11-libs/libXpm
68 x11-libs/libICE
69 x11-libs/libSM
70 x11-libs/libXt
71 x11-libs/libXxf86vm
72 x11-apps/xset
73 Xaw3d? ( x11-libs/Xaw3d )
74 !Xaw3d? ( !gnome? ( x11-libs/libXaw ) )
75 alsa? ( media-libs/alsa-lib )
76 arts? ( kde-base/arts )
77 esd? ( media-sound/esound )
78 gnome? (
79 x11-libs/gtk+:2
80 dev-libs/atk
81 x11-libs/pango
82 )
83 nls? ( virtual/libintl )
84 png? ( media-libs/libpng )
85 readline? ( sys-libs/readline )
86 resid? ( media-libs/resid )
87 sdl? ( media-libs/libsdl )
88 gif? ( media-libs/giflib )
89 jpeg? ( media-libs/jpeg )
90 xv? ( x11-libs/libXv )
91 dga? ( x11-libs/libXxf86dga )
92 xrandr? ( x11-libs/libXrandr )"
93 DEPEND="${RDEPEND}
94 x11-apps/bdftopcf
95 x11-apps/mkfontdir
96 x11-proto/xproto
97 x11-proto/xf86vidmodeproto
98 x11-proto/xextproto
99 dga? ( x11-proto/xf86dgaproto )
100 xv? ( x11-proto/videoproto )
101 nls? ( sys-devel/gettext )"
102
103 src_configure() {
104 egamesconf \
105 --disable-dependency-tracking \
106 --enable-fullscreen \
107 --enable-parsid \
108 --disable-ffmpeg \
109 --without-midas \
110 $(use_enable gnome gnomeui) \
111 $(use_enable nls) \
112 $(use_with Xaw3d xaw3d) \
113 $(use_with alsa) \
114 $(use_with arts) \
115 $(use_with esd) \
116 $(use_with png) \
117 $(use_with readline) \
118 $(use_with resid) \
119 $(use_with sdl) \
120 $(use_enable ipv6) \
121 $(use_enable oss) \
122 $(use_enable mmap memmap) \
123 $(use_with zlib) \
124 $(use_with X x)
125 }
126
127 src_install() {
128 emake DESTDIR="${D}" install || die "emake install failed"
129 dodoc AUTHORS ChangeLog FEEDBACK README
130 prepgamesdirs
131 }