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 C6125138334 for ; Sun, 3 Feb 2019 14:08:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 056D3E0BD4; Sun, 3 Feb 2019 14:08:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CF79CE0BCD for ; Sun, 3 Feb 2019 14:08:21 +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 A2AA833BECB for ; Sun, 3 Feb 2019 14:08:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11F8D535 for ; Sun, 3 Feb 2019 14:08:17 +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: <1549202871.86aba157f2750464c59c04016df5eaa24bbbefea.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/easystroke/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/easystroke/easystroke-0.6.0-r2.ebuild X-VCS-Directories: x11-misc/easystroke/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 86aba157f2750464c59c04016df5eaa24bbbefea X-VCS-Branch: master Date: Sun, 3 Feb 2019 14:08:17 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a4afdaeb-d635-4cbf-aaf1-2d32131e7022 X-Archives-Hash: 213ff893b1b516c8e555d4b039cfc287 commit: 86aba157f2750464c59c04016df5eaa24bbbefea Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Jan 30 17:20:10 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 3 14:07:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86aba157 x11-misc/easystroke: drop old Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/easystroke/easystroke-0.6.0-r2.ebuild | 64 -------------------------- 1 file changed, 64 deletions(-) diff --git a/x11-misc/easystroke/easystroke-0.6.0-r2.ebuild b/x11-misc/easystroke/easystroke-0.6.0-r2.ebuild deleted file mode 100644 index c441c8c4a8c..00000000000 --- a/x11-misc/easystroke/easystroke-0.6.0-r2.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="a gesture-recognition application for X11" -HOMEPAGE="https://sourceforge.net/apps/trac/easystroke/" -SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - dev-cpp/gtkmm:3.0 - dev-libs/boost:= - dev-libs/dbus-glib - dev-libs/glib:2 - x11-base/xorg-server - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXtst -" -DEPEND=" - ${RDEPEND} - dev-util/intltool - sys-devel/gettext -" - -src_prepare() { - epatch "${FILESDIR}"/${P}-cellrendertextish.patch - epatch "${FILESDIR}"/${P}-desktop.patch - epatch "${FILESDIR}"/${P}-gentoo.patch - epatch "${FILESDIR}"/${P}-reinstate-signal-handlers.patch - epatch "${FILESDIR}"/${P}-buttons-scroll-send.patch - epatch "${FILESDIR}"/${P}-cxx11.patch - - tc-export CC CXX PKG_CONFIG - - if ! [[ -z ${LINGUAS} ]]; then - strip-linguas -i po/ - - local es_lingua lang - for es_lingua in $( printf "%s\n" po/*.po ); do - lang=${es_lingua/po\/} - has ${lang/.po/} ${LINGUAS} || rm ${es_lingua} - done - fi -} - -src_compile() { - append-cxxflags -std=c++11 - emake \ - AOFLAGS='' \ - LDFLAGS="${LDFLAGS}" \ - PREFIX=/usr -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install -}