commit:     f69df3c1e7978b9bdca93b194a898d5baf239a2c
Author:     Ionen Wolkens <sudinave <AT> gmail <DOT> com>
AuthorDate: Thu Nov  5 14:46:50 2020 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sun Nov 29 19:42:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f69df3c1

x11-misc/devilspie2: port to lua-single eclass

With some cosmetic changes made and package.mask entry added by Marek
Szuba at merge time.

Closes: https://bugs.gentoo.org/752885
Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 profiles/package.mask                              |  1 +
 x11-misc/devilspie2/devilspie2-0.43-r100.ebuild    | 48 ++++++++++++++++++++++
 .../files/devilspie2-0.43-lua-pkgconfig.patch      | 12 ++++++
 3 files changed, 61 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 1f8a52a3556..772346c25fa 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -567,6 +567,7 @@ dev-lua/luacrypto
 >=www-client/elinks-0.13.5-r100
 >=www-client/luakit-2.2.1-r100
 >=www-servers/lighttpd-1.4.55-r100
+>=x11-misc/devilspie2-0.43-r100
 >=dev-lua/lpeg-1.0.2-r100
 >=dev-lua/lgi-0.9.2-r100
 

diff --git a/x11-misc/devilspie2/devilspie2-0.43-r100.ebuild 
b/x11-misc/devilspie2/devilspie2-0.43-r100.ebuild
new file mode 100644
index 00000000000..e9c87f823d3
--- /dev/null
+++ b/x11-misc/devilspie2/devilspie2-0.43-r100.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..3} luajit )
+PLOCALES="fi fr it ja nl pt_BR ru sv"
+
+inherit lua-single toolchain-funcs l10n
+
+DESCRIPTION="Devilspie like window matching utility, using LUA for scripting"
+HOMEPAGE="https://www.nongnu.org/devilspie2/";
+SRC_URI="https://download.savannah.gnu.org/releases/devilspie2/devilspie2_${PV}-src.tar.gz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+RDEPEND="
+       ${LUA_DEPS}
+       >=dev-libs/glib-2.32.4:2
+       >=x11-libs/gtk+-3.4.4:3
+       >=x11-libs/libwnck-3.4.4:3
+       x11-libs/libX11
+"
+DEPEND="
+       ${RDEPEND}
+       x11-base/xorg-proto
+"
+BDEPEND="
+       sys-devel/gettext
+       virtual/pkgconfig
+"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-0.43-lua-pkgconfig.patch"
+)
+
+src_compile() {
+       emake CC="$(tc-getCC)" PREFIX="/usr" LANGUAGES="$(l10n_get_locales)"
+}
+
+src_install() {
+       emake PREFIX="/usr" DESTDIR="${ED}" LANGUAGES="$(l10n_get_locales)" 
install
+       einstalldocs
+       doman devilspie2.1
+}

diff --git a/x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch 
b/x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch
new file mode 100644
index 00000000000..89c74d0bbb4
--- /dev/null
+++ b/x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch
@@ -0,0 +1,12 @@
+--- a/Makefile
++++ b/Makefile
+@@ -60,7 +60,7 @@
+ endif
+ 
+-LIB_CFLAGS=$(shell pkg-config --cflags --silence-errors $(PKG_GTK) 
$(PKG_WNCK) lua5.1 || pkg-config --cflags $(PKG_GTK) $(PKG_WNCK) lua)
++LIB_CFLAGS=$(shell pkg-config --cflags $(PKG_GTK) $(PKG_WNCK) lua)
+ STD_LDFLAGS=
+-LIBS=-lX11 $(shell pkg-config --libs --silence-errors $(PKG_GTK) $(PKG_WNCK) 
lua5.1 || pkg-config --libs $(PKG_GTK) $(PKG_WNCK) lua)
++LIBS=-lX11 $(shell pkg-config --libs $(PKG_GTK) $(PKG_WNCK) lua)
+ 
+ LOCAL_CFLAGS=$(STD_CFLAGS) $(DEPRECATED) $(CFLAGS) $(LIB_CFLAGS)

Reply via email to