Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-rpg/manaplus: manaplus-1.3.3.3.ebuild ChangeLog
Date: Mon, 04 Mar 2013 19:07:00
Message-Id: 20130304190657.8FA922171D@flycatcher.gentoo.org
1 hasufell 13/03/04 19:06:57
2
3 Modified: ChangeLog
4 Added: manaplus-1.3.3.3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.2 games-rpg/manaplus/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/manaplus/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/manaplus/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/manaplus/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-rpg/manaplus/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 4 Feb 2013 18:23:28 -0000 1.1
24 +++ ChangeLog 4 Mar 2013 19:06:57 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-rpg/manaplus
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/manaplus/ChangeLog,v 1.1 2013/02/04 18:23:28 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/manaplus/ChangeLog,v 1.2 2013/03/04 19:06:57 hasufell Exp $
30 +
31 +*manaplus-1.3.3.3 (04 Mar 2013)
32 +
33 + 04 Mar 2013; Julian Ospald <hasufell@g.o> +manaplus-1.3.3.3.ebuild:
34 + version bump
35
36 *manaplus-1.3.2.3 (04 Feb 2013)
37
38
39
40
41 1.1 games-rpg/manaplus/manaplus-1.3.3.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/manaplus/manaplus-1.3.3.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/manaplus/manaplus-1.3.3.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: manaplus-1.3.3.3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-rpg/manaplus/manaplus-1.3.3.3.ebuild,v 1.1 2013/03/04 19:06:57 hasufell Exp $
51
52 EAPI=5
53
54 inherit games
55
56 DESCRIPTION="OpenSource 2D MMORPG client for Evol Online and The Mana World"
57 HOMEPAGE="http://manaplus.evolonline.org"
58 SRC_URI="http://download.evolonline.org/manaplus/download/${PV}/manaplus-${PV}.tar.xz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="nls opengl"
64
65 RDEPEND="
66 >=dev-games/physfs-1.0.0
67 dev-libs/libxml2
68 media-libs/sdl-mixer[vorbis]
69 media-libs/sdl-image[png]
70 media-libs/sdl-net
71 media-libs/sdl-ttf
72 net-misc/curl
73 sys-libs/zlib
74 media-libs/libpng:0
75 media-fonts/dejavu
76 >=dev-games/guichan-0.8.1[sdl]
77 media-libs/libsdl[X,opengl?,video]
78 media-libs/sdl-gfx
79 x11-apps/xmessage
80 x11-libs/libX11
81 x11-misc/xdg-utils
82 x11-misc/xsel
83 nls? ( virtual/libintl )
84 opengl? ( virtual/opengl )"
85 DEPEND="${RDEPEND}
86 virtual/pkgconfig
87 nls? ( sys-devel/gettext )"
88
89 src_prepare() {
90 sed -i \
91 -e '/^SUBDIRS/s/fonts//' \
92 data/Makefile.in || die
93
94 rm -r src/guichan || die
95 }
96
97 src_configure() {
98 egamesconf \
99 --without-internalguichan \
100 --localedir=/usr/share/locale \
101 --disable-manaserv \
102 --disable-eathena \
103 $(use_with opengl) \
104 $(use_enable nls)
105 }
106
107 src_install() {
108 default
109
110 dosym /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf "${GAMES_DATADIR}"/${PN}/data/fonts/dejavusans-bold.ttf
111 dosym /usr/share/fonts/dejavu/DejaVuSans.ttf "${GAMES_DATADIR}"/${PN}/data/fonts/dejavusans.ttf
112 dosym /usr/share/fonts/dejavu/DejaVuSansMono.ttf "${GAMES_DATADIR}"/${PN}/data/fonts/dejavusans-mono.ttf
113 insinto "${GAMES_DATADIR}"/${PN}/data
114
115 prepgamesdirs
116 }