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 D04BA13828B for ; Fri, 27 May 2016 11:37:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A594D224042; Fri, 27 May 2016 11:37:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38188224042 for ; Fri, 27 May 2016 11:37:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D347C340942 for ; Fri, 27 May 2016 11:37:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93667964 for ; Fri, 27 May 2016 11:37:52 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1464349065.eb399ae40038ff9980e82729f17d96da995534a2.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: media-gfx/ktikz/ X-VCS-Repository: dev/dev-zero X-VCS-Files: media-gfx/ktikz/ktikz-9999.ebuild X-VCS-Directories: media-gfx/ktikz/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: eb399ae40038ff9980e82729f17d96da995534a2 X-VCS-Branch: master Date: Fri, 27 May 2016 11:37:52 +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: f19aaf7f-452e-45ed-95c2-59957f003723 X-Archives-Hash: b150138f493fda2b5bc22c12dc63e640 commit: eb399ae40038ff9980e82729f17d96da995534a2 Author: Tiziano Müller gentoo org> AuthorDate: Fri May 27 11:37:45 2016 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Fri May 27 11:37:45 2016 +0000 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=eb399ae4 media-gfx/ktikz: fix build media-gfx/ktikz/ktikz-9999.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/media-gfx/ktikz/ktikz-9999.ebuild b/media-gfx/ktikz/ktikz-9999.ebuild index 8ae3b3c..ce7de39 100644 --- a/media-gfx/ktikz/ktikz-9999.ebuild +++ b/media-gfx/ktikz/ktikz-9999.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="5" +EAPI="6" inherit git-r3 qmake-utils MY_P="${PN}_${PV}" -DESCRIPTION="A QT4-based editor for the TikZ language (fork)" +DESCRIPTION="A Qt-based editor for the TikZ language (fork)" HOMEPAGE="https://github.com/jfmcarreira/ktikz" EGIT_REPO_URI="https://github.com/jfmcarreira/ktikz.git" @@ -29,15 +29,19 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { + default + # linker flags are not the same as linker libs (order matters) - sed -i -e 's|QMAKE_LFLAGS|LIBS|' macros.pri || die + sed -i -e 's|QMAKE_LFLAGS|LIBS|' \ + qmake/{findpoppler,qtikzmacros}.pri || die } src_configure() { + export QT_SELECT=5 eqmake5 qtikz.pro "CONFIG+=nostrip" } src_install() { emake INSTALL_ROOT="${D}" install - dodoc Changelog HACKING README TODO + dodoc Changelog HACKING README.md TODO }