Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-games/tiled: tiled-0.10.1.ebuild ChangeLog tiled-0.9.0.ebuild
Date: Mon, 22 Sep 2014 18:37:44
Message-Id: 20140922183740.1AFC85F2F@oystercatcher.gentoo.org
1 kensington 14/09/22 18:37:40
2
3 Modified: ChangeLog
4 Added: tiled-0.10.1.ebuild
5 Removed: tiled-0.9.0.ebuild
6 Log:
7 Version bump wrt bug #523464. Remove old.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
10
11 Revision Changes Path
12 1.7 dev-games/tiled/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/tiled/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/tiled/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/tiled/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-games/tiled/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 10 Aug 2014 20:06:39 -0000 1.6
25 +++ ChangeLog 22 Sep 2014 18:37:40 -0000 1.7
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-games/tiled
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-games/tiled/ChangeLog,v 1.6 2014/08/10 20:06:39 slyfox Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-games/tiled/ChangeLog,v 1.7 2014/09/22 18:37:40 kensington Exp $
31 +
32 +*tiled-0.10.1 (22 Sep 2014)
33 +
34 + 22 Sep 2014; Michael Palimaka <kensington@g.o> +tiled-0.10.1.ebuild,
35 + -tiled-0.9.0.ebuild:
36 + Version bump wrt bug #523464. Remove old.
37
38 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> tiled-0.9.0.ebuild,
39 tiled-0.9.1.ebuild:
40
41
42
43 1.1 dev-games/tiled/tiled-0.10.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/tiled/tiled-0.10.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/tiled/tiled-0.10.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tiled-0.10.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-games/tiled/tiled-0.10.1.ebuild,v 1.1 2014/09/22 18:37:40 kensington Exp $
53
54 EAPI=5
55
56 PLOCALES="cs de en es fr he it ja lv nl pt pt_BR ru zh zh_TW"
57 PYTHON_COMPAT=( python2_7 )
58 inherit multilib l10n python-single-r1 qt4-r2
59
60 DESCRIPTION="A general purpose tile map editor"
61 HOMEPAGE="http://www.mapeditor.org/"
62 SRC_URI="https://github.com/bjorn/tiled/archive/v${PV}/${P}.tar.gz"
63
64 LICENSE="BSD GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64"
67 IUSE="examples python"
68
69 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
70
71 DEPEND=">=dev-qt/qtcore-4.7:4
72 >=dev-qt/qtgui-4.7:4
73 >=dev-qt/qtopengl-4.7:4
74 sys-libs/zlib
75 python? ( ${PYTHON_DEPS} )"
76 RDEPEND="${DEPEND}"
77
78 DOCS=( AUTHORS COPYING NEWS README.md )
79
80 pkg_setup() {
81 use python && python-single-r1_pkg_setup
82 }
83
84 src_prepare() {
85 rm -r src/zlib || die
86 sed -e "s/^LANGUAGES =.*/LANGUAGES = $(l10n_get_locales)/" \
87 -i translations/translations.pro || die
88 }
89
90 src_configure() {
91 eqmake4 LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" DISABLE_PYTHON_PLUGIN="$(usex !python)"
92 }
93
94 src_install() {
95 qt4-r2_src_install
96
97 if use examples ; then
98 docompress -x /usr/share/doc/${PF}/examples
99 dodoc -r examples
100 fi
101 }