Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/tiled/
Date: Thu, 23 Jun 2016 19:03:12
Message-Id: 1466708573.7ad0edad2bc0d3f2cda1f9622c0cfdb005ced81c.kensington@gentoo
1 commit: 7ad0edad2bc0d3f2cda1f9622c0cfdb005ced81c
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 19:01:50 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 19:02:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad0edad
7
8 dev-games/tiled: remove old
9
10 Package-Manager: portage-2.3.0_rc1
11
12 dev-games/tiled/Manifest | 1 -
13 dev-games/tiled/tiled-0.16.0.ebuild | 67 -------------------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest
17 index 098b09d..d09a3aa 100644
18 --- a/dev-games/tiled/Manifest
19 +++ b/dev-games/tiled/Manifest
20 @@ -1,2 +1 @@
21 -DIST tiled-0.16.0.tar.gz 4485752 SHA256 c02df78021c07c5574a8b52fcb61a02649db039724f13ecacdd18840df7490ee SHA512 4850127fd05f477b47df3d44a25e457eade4719b2d6e295eb5e220574e8b0009c7b9b9972679b5ef539ec63c8ecc56c12be6f24e1cc611714ca8d4d9769150f3 WHIRLPOOL f42aa6dd38a223ba385a69a6f7f2e2fe2e99c4a65da2c59b915b2fe2ba9a597670f7737f57c23e2a1cb9c4b058143779c110c9c9dfdf1f833e84c5491a78c253
22 DIST tiled-0.16.1.tar.gz 4506022 SHA256 c666627fc243d27fb879d85b9de841b5c82d1363f93204e5f72afd50a1373168 SHA512 425cbdc66132312326b9edc0cf4aa24116cfb0a2f89c1a51107f8bdfbf4f8c41ba450a8a3737867b2fc8bda43cfb66669e488b3c540911e60860086365939d62 WHIRLPOOL 2aea640f6a725194d7b980481d01b8b1802349a031cf8b07baf6f58cf8bc668516ef03cc1feb1275a8ea565ba0b3e200494fc677add7ada0fc20b6ddae74009b
23
24 diff --git a/dev-games/tiled/tiled-0.16.0.ebuild b/dev-games/tiled/tiled-0.16.0.ebuild
25 deleted file mode 100644
26 index b2e80ad..0000000
27 --- a/dev-games/tiled/tiled-0.16.0.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -inherit fdo-mime gnome2-utils multilib python-single-r1 qmake-utils
38 -
39 -DESCRIPTION="A general purpose tile map editor"
40 -HOMEPAGE="http://www.mapeditor.org/"
41 -SRC_URI="https://github.com/bjorn/tiled/archive/v${PV}/${P}.tar.gz"
42 -
43 -LICENSE="BSD BSD-2 GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="amd64"
46 -IUSE="examples python"
47 -
48 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
49 -
50 -RDEPEND="
51 - dev-qt/qtcore:5
52 - dev-qt/qtgui:5
53 - dev-qt/qtnetwork:5
54 - dev-qt/qtopengl:5
55 - dev-qt/qtwidgets:5
56 - sys-libs/zlib
57 - python? ( ${PYTHON_DEPS} )
58 -"
59 -DEPEND="${RDEPEND}
60 - dev-qt/linguist-tools:5
61 -"
62 -
63 -pkg_setup() {
64 - use python && python-single-r1_pkg_setup
65 -}
66 -
67 -src_configure() {
68 - eqmake5 LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" DISABLE_PYTHON_PLUGIN="$(usex !python)"
69 -}
70 -
71 -src_install() {
72 - emake INSTALL_ROOT="${D}" install
73 -
74 - dodoc AUTHORS COPYING NEWS README.md
75 -
76 - if use examples ; then
77 - docompress -x /usr/share/doc/${PF}/examples
78 - dodoc -r examples
79 - fi
80 -}
81 -
82 -pkg_preinst() {
83 - gnome2_icon_savelist
84 -}
85 -
86 -pkg_postinst() {
87 - gnome2_icon_cache_update
88 - fdo-mime_desktop_database_update
89 - fdo-mime_mime_database_update
90 -}
91 -
92 -pkg_postrm() {
93 - gnome2_icon_cache_update
94 - fdo-mime_desktop_database_update
95 - fdo-mime_mime_database_update
96 -}