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 games-engines/gemrb: gemrb-0.8.1.ebuild ChangeLog
Date: Sun, 01 Jun 2014 07:30:42
Message-Id: 20140601073038.7F29A2004E@flycatcher.gentoo.org
1 mr_bones_ 14/06/01 07:30:38
2
3 Modified: ChangeLog
4 Added: gemrb-0.8.1.ebuild
5 Log:
6 version bump (bug #511558)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.34 games-engines/gemrb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/gemrb/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/gemrb/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/gemrb/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-engines/gemrb/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 3 Mar 2014 23:33:30 -0000 1.33
24 +++ ChangeLog 1 Jun 2014 07:30:38 -0000 1.34
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-engines/gemrb
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-engines/gemrb/ChangeLog,v 1.33 2014/03/03 23:33:30 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-engines/gemrb/ChangeLog,v 1.34 2014/06/01 07:30:38 mr_bones_ Exp $
30 +
31 +*gemrb-0.8.1 (01 Jun 2014)
32 +
33 + 01 Jun 2014; Michael Sterrett <mr_bones_@g.o> +gemrb-0.8.1.ebuild:
34 + version bump (bug #511558)
35
36 03 Mar 2014; Pacho Ramos <pacho@g.o> gemrb-0.8.0.1.ebuild:
37 amd64 stable, bug #483986
38
39
40
41 1.1 games-engines/gemrb/gemrb-0.8.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/gemrb/gemrb-0.8.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/gemrb/gemrb-0.8.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gemrb-0.8.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-engines/gemrb/gemrb-0.8.1.ebuild,v 1.1 2014/06/01 07:30:38 mr_bones_ Exp $
51
52 EAPI=3
53 PYTHON_DEPEND="2"
54 WANT_CMAKE=always
55 inherit eutils python cmake-utils gnome2-utils games
56
57 DESCRIPTION="Reimplementation of the Infinity engine"
58 HOMEPAGE="http://gemrb.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/gemrb/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 DEPEND="media-libs/freetype
67 media-libs/libpng:0
68 >=media-libs/libsdl-1.2[video]
69 media-libs/libvorbis
70 media-libs/openal
71 media-libs/sdl-mixer
72 sys-libs/zlib"
73 RDEPEND=${DEPEND}
74
75 pkg_setup() {
76 python_set_active_version 2
77 games_pkg_setup
78 }
79
80 src_prepare() {
81 sed -i \
82 -e '/COPYING/d' \
83 CMakeLists.txt || die
84 }
85
86 src_configure() {
87 mycmakeargs=(
88 -DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}"
89 -DBIN_DIR="${GAMES_BINDIR}"
90 -DDATA_DIR="${GAMES_DATADIR}/gemrb"
91 -DSYSCONF_DIR="${GAMES_SYSCONFDIR}/gemrb"
92 -DLIB_DIR="$(games_get_libdir)"
93 -DMAN_DIR=/usr/share/man/man6
94 -DICON_DIR=/usr/share/pixmaps
95 -DMENU_DIR=/usr/share/applications
96 -DDOC_DIR="/usr/share/doc/${PF}"
97 -DSVG_DIR=/usr/share/icons/hicolor/scalable/apps
98 )
99 cmake-utils_src_configure
100 }
101
102 src_compile() {
103 cmake-utils_src_compile
104 }
105
106 src_install() {
107 cmake-utils_src_install
108 dodoc README NEWS AUTHORS
109 prepgamesdirs
110 prepalldocs
111 }
112
113 pkg_preinst() {
114 games_pkg_preinst
115 gnome2_icon_savelist
116 }
117
118 pkg_postinst() {
119 games_pkg_postinst
120 gnome2_icon_cache_update
121 }
122
123 pkg_postrm() {
124 gnome2_icon_cache_update
125 }