From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DD86E1382C5 for ; Thu, 12 Apr 2018 21:42:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85A90E09B0; Thu, 12 Apr 2018 21:42:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63591E09B0 for ; Thu, 12 Apr 2018 21:42:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C74E335C80 for ; Thu, 12 Apr 2018 21:42:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8207D288 for ; Thu, 12 Apr 2018 21:42:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1523569336.7f9af7fd4991bc37f40ad37d911f754ea91ed452.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/qwtpolar/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/qwtpolar/qwtpolar-1.1.1-r1.ebuild X-VCS-Directories: x11-libs/qwtpolar/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7f9af7fd4991bc37f40ad37d911f754ea91ed452 X-VCS-Branch: master Date: Thu, 12 Apr 2018 21:42:38 +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: f097cbd9-c9d3-4d09-8be3-42234b538491 X-Archives-Hash: ac4caf289a5ddebbb09de21ae0f8c56a commit: 7f9af7fd4991bc37f40ad37d911f754ea91ed452 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Apr 12 20:05:15 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 12 21:42:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f9af7fd x11-libs/qwtpolar: Drop 1.1.1-r1 Package-Manager: Portage-2.3.28, Repoman-2.3.9 x11-libs/qwtpolar/qwtpolar-1.1.1-r1.ebuild | 62 ------------------------------ 1 file changed, 62 deletions(-) diff --git a/x11-libs/qwtpolar/qwtpolar-1.1.1-r1.ebuild b/x11-libs/qwtpolar/qwtpolar-1.1.1-r1.ebuild deleted file mode 100644 index 92b8ca54a3b..00000000000 --- a/x11-libs/qwtpolar/qwtpolar-1.1.1-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit qmake-utils - -DESCRIPTION="Library for displaying values on a polar coordinate system" -HOMEPAGE="http://qwtpolar.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="qwt" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+qt4 qt5" - -REQUIRED_USE="^^ ( qt4 qt5 )" - -RDEPEND=" - qt4? ( x11-libs/qwt:6=[designer,qt4(+),svg] ) - qt5? ( x11-libs/qwt:6=[designer,qt5,svg] ) -" -DEPEND="${RDEPEND}" - -src_prepare() { - default - - local qtplugindir="${EPREFIX}$(qt4_get_plugindir)" - use qt5 && qtplugindir="${EPREFIX}$(qt5_get_plugindir)" - - sed \ - -e "/QWT_POLAR_INSTALL_PREFIX /s:=.*$:= ${EPREFIX}/usr:g" \ - -e "/QWT_POLAR_INSTALL_LIBS/s:lib:$(get_libdir):g" \ - -e "/QWT_POLAR_INSTALL_DOCS/s:doc:share/doc/${PF}:g" \ - -e "/QWT_POLAR_INSTALL_PLUGINS/s:=.*$:= ${qtplugindir}/designer/:g" \ - -e "/QWT_POLAR_INSTALL_FEATURES/s:=.*$:= ${qtplugindir}/features/:g" \ - -e "/= QwtPolarDesigner/ d" \ - -e "/= QwtPolarExamples/d" \ - -i ${PN}config.pri || die - - sed \ - -e "s:{QWT_POLAR_ROOT}/lib:{QWT_POLAR_ROOT}/$(get_libdir):" \ - -i src/src.pro || die - echo "INCLUDEPATH += ${EPREFIX}/usr/include/qwt6" >> src/src.pro - cat >> designer/designer.pro <<- EOF - INCLUDEPATH += "${EPREFIX}"/usr/include/qwt6 - LIBS += -L"${S}/$(get_libdir)" - EOF -} - -src_configure() { - if use qt5; then - eqmake5 - else - eqmake4 - fi -} - -src_install() { - emake DESTDIR="${D}" INSTALL_ROOT="${D}" install - einstalldocs -}