From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 929B513800E for ; Mon, 6 Aug 2012 14:48:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AAACE0759; Mon, 6 Aug 2012 14:48:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 24A80E0759 for ; Mon, 6 Aug 2012 14:48:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8872F1B4014 for ; Mon, 6 Aug 2012 14:48:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 34926E5439 for ; Mon, 6 Aug 2012 14:48:37 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1344264425.cf79367424d09305facbd0a96de4007ddc88845b.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-games/tiled/ X-VCS-Repository: proj/qt X-VCS-Files: dev-games/tiled/Manifest dev-games/tiled/metadata.xml dev-games/tiled/tiled-0.8.1.ebuild X-VCS-Directories: dev-games/tiled/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: cf79367424d09305facbd0a96de4007ddc88845b X-VCS-Branch: master Date: Mon, 6 Aug 2012 14:48:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e11bb6ca-1ae6-491a-b823-0ef4afb0825b X-Archives-Hash: ccc84576c739af749c9a2cab2eac3f74 commit: cf79367424d09305facbd0a96de4007ddc88845b Author: Michael Palimaka gentoo org> AuthorDate: Mon Aug 6 14:47:05 2012 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Aug 6 14:47:05 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=cf793674 [dev-games/tiled] Moved to the main tree. --- dev-games/tiled/Manifest | 1 - dev-games/tiled/metadata.xml | 8 ----- dev-games/tiled/tiled-0.8.1.ebuild | 54 ------------------------------------ 3 files changed, 0 insertions(+), 63 deletions(-) diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest deleted file mode 100644 index c042599..0000000 --- a/dev-games/tiled/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tiled-qt-0.8.1.tar.gz 822180 SHA256 e5be7c38ceb24fbe0043648e8bc639804f3df5a60beb313eb039b2bcd56ad76c SHA512 7d5f39239b290db5abe2fda353c17b02bf58e8cdebb7a86b6cabeb93a8730fe8085e08fb41f2f34b1e8b4de43cbacfe3f7f3deee4e233ca48e6bf51dfd339a3f WHIRLPOOL 4901adf026cbadadf2b0bbab57e932d869355209d4d5dc50ef4a2386e3c7e58a94577c3c13a2bb58752edbae82ef6ff8b7fccc3feb90f249ddfd492a8f204f81 diff --git a/dev-games/tiled/metadata.xml b/dev-games/tiled/metadata.xml deleted file mode 100644 index 4731b41..0000000 --- a/dev-games/tiled/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - qt - - tiled - - diff --git a/dev-games/tiled/tiled-0.8.1.ebuild b/dev-games/tiled/tiled-0.8.1.ebuild deleted file mode 100644 index 01a11fd..0000000 --- a/dev-games/tiled/tiled-0.8.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 - -LANGS="cs de en es fr he it ja lv nl pt pt_BR ru zh" -MY_P="${PN}-qt-${PV}" - -inherit multilib qt4-r2 - -DESCRIPTION="A general purpose tile map editor." -HOMEPAGE="http://www.mapeditor.org/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="examples" - -DEPEND="sys-libs/zlib - >=x11-libs/qt-core-4.6:4 - >=x11-libs/qt-gui-4.6:4 - >=x11-libs/qt-opengl-4.6:4" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -DOCS="AUTHORS COPYING NEWS README.md" - -src_prepare() { - rm -r src/zlib || die - - local lang languages - for lang in ${LANGS} ; do - if use linguas_${lang} ; then - languages+=" ${lang}" - fi - done - sed -e "s/^LANGUAGES =.*/LANGUAGES =${languages}/" -i translations/translations.pro || die -} - -src_configure() { - eqmake4 LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" -} - -src_install() { - qt4-r2_src_install - - if use examples ; then - insinto /usr/share/${PN} - doins -r examples - fi -}