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 EDFC813829C for ; Thu, 2 Jun 2016 15:29:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22BE525402F; Thu, 2 Jun 2016 15:29:34 +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 8123225402C for ; Thu, 2 Jun 2016 15:29:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 09B78340E6E for ; Thu, 2 Jun 2016 15:29:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD98A983 for ; Thu, 2 Jun 2016 15:29:29 +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: <1464881359.5658ec274a1655c81a13068c12c989d0c7fbddfa.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-misc/kdiff3/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-misc/kdiff3/kdiff3-0.9.98.ebuild X-VCS-Directories: kde-misc/kdiff3/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 5658ec274a1655c81a13068c12c989d0c7fbddfa X-VCS-Branch: master Date: Thu, 2 Jun 2016 15:29:29 +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: 4d206017-cbbd-493b-83a6-a74ee69a294f X-Archives-Hash: 2ef8ac66a1cceb074fa830c9f0bd0c21 commit: 5658ec274a1655c81a13068c12c989d0c7fbddfa Author: Michael Palimaka gentoo org> AuthorDate: Thu Jun 2 15:29:14 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Jun 2 15:29:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5658ec27 kde-misc/kdiff3: remove old Package-Manager: portage-2.3.0_rc1 kde-misc/kdiff3/kdiff3-0.9.98.ebuild | 93 ------------------------------------ 1 file changed, 93 deletions(-) diff --git a/kde-misc/kdiff3/kdiff3-0.9.98.ebuild b/kde-misc/kdiff3/kdiff3-0.9.98.ebuild deleted file mode 100644 index 2d0bd1e..0000000 --- a/kde-misc/kdiff3/kdiff3-0.9.98.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -if [[ ${PV} != *9999* ]]; then - KDE_LINGUAS="ar bg br bs ca ca@valencia cs cy da de el en_GB eo es et fr ga - gl hi hne hr hu is it ja ka lt mai ml nb nds nl nn pl pt pt_BR ro ru rw sk - sv ta tg tr ug uk zh_CN zh_TW" - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - KEYWORDS="amd64 ~ppc x86 ~amd64-linux" - KDE_HANDBOOK="optional" -else - KEYWORDS="" -fi - -KDE_REQUIRED="optional" -inherit kde4-base qt4-r2 - -DESCRIPTION="Qt/KDE based frontend to diff3" -HOMEPAGE="http://kdiff3.sourceforge.net/" -EGIT_REPO_URI=( "git://git.code.sf.net/p/kdiff3/code" ) - -LICENSE="GPL-2" -SLOT="4" -IUSE="debug kde" - -CDEPEND=" - dev-qt/qtcore:4 - dev-qt/qtgui:4 - kde? ( $(add_kdebase_dep kdelibs) ) -" -DEPEND="${CDEPEND} - sys-devel/gettext -" -RDEPEND="${CDEPEND} - sys-apps/diffutils -" - -RESTRICT="!kde? ( test )" - -src_unpack(){ - if [[ ${PV} == *9999* ]]; then - git-r3_src_unpack - mv "${S}"/${PN}/* "${S}" || die - elif use kde; then - kde4-base_src_unpack - else - qt4-r2_src_unpack - fi -} - -src_prepare() { - if ! use kde; then - # adapt to Gentoo paths - sed -e s,documentation.path.*$,documentation.path\ =\ "${EPREFIX}"/usr/share/doc/"${PF}", \ - -e s,target.path.*$,target.path\ =\ "${EPREFIX}"/usr/bin, \ - "${S}"/src-QT4/kdiff3.pro > "${S}"/src-QT4/kdiff3_fixed.pro - else - kde4-base_src_prepare - fi -} - -src_configure() { - if use kde; then - kde4-base_src_configure - else - eqmake4 "${S}"/src-QT4/kdiff3_fixed.pro - fi -} - -src_compile() { - if use kde; then - kde4-base_src_compile - else - qt4-r2_src_compile - fi -} - -src_install() { - if use kde; then - kde4-base_src_install - else - qt4-r2_src_install - fi -} - -src_test() { - if use kde; then - kde4-base_src_test - fi -}