diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-01-30 18:20:10 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-03 15:07:51 +0100 |
commit | 86aba157f2750464c59c04016df5eaa24bbbefea (patch) | |
tree | 54c7d3a774dfcb92400cb8b7b70151950be4c6fe /x11-misc/easystroke | |
parent | x11-misc/lineakd: drop old (diff) | |
download | gentoo-86aba157f2750464c59c04016df5eaa24bbbefea.tar.gz gentoo-86aba157f2750464c59c04016df5eaa24bbbefea.tar.bz2 gentoo-86aba157f2750464c59c04016df5eaa24bbbefea.zip |
x11-misc/easystroke: drop old
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc/easystroke')
-rw-r--r-- | x11-misc/easystroke/easystroke-0.6.0-r2.ebuild | 64 |
1 files changed, 0 insertions, 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 c441c8c4a8cd..000000000000 --- 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 -} |