x11-plugins/wmmenu: EAPI7, improve ebuild
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 22 Jul 2018 17:27:03 +0000 (19:27 +0200)
committerBernard Cafarelli <voyageur@gentoo.org>
Thu, 2 Aug 2018 20:15:40 +0000 (22:15 +0200)
x11-plugins/wmmenu/files/wmmenu-1.3-Makefile.patch
x11-plugins/wmmenu/wmmenu-1.3-r2.ebuild [new file with mode: 0644]

index a6fc4c7ec437d46372449b077e59c97c0479c0d5..bbf18433480c3a0d422c9b652a181390986815d6 100644 (file)
@@ -1,5 +1,5 @@
---- Makefile.orig      2015-04-17 13:43:08.122972280 +0200
-+++ Makefile   2015-04-17 13:43:11.569975854 +0200
+--- a/Makefile 2015-04-17 13:43:08.122972280 +0200
++++ b/Makefile 2015-04-17 13:43:11.569975854 +0200
 @@ -14,12 +14,12 @@
  PIXBUF_LIB := -rdynamic -L$(shell $(PIXBUF_CFG) --variable=prefix)/lib -lgdk_pixbuf_xlib-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0
  endif
diff --git a/x11-plugins/wmmenu/wmmenu-1.3-r2.ebuild b/x11-plugins/wmmenu/wmmenu-1.3-r2.ebuild
new file mode 100644 (file)
index 0000000..ab02ed5
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="a popup menu of icons like in AfterStep, as a dockapp"
+HOMEPAGE="https://www.dockapps.net/wmmenu"
+SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="x11-libs/gdk-pixbuf[X]
+       >=x11-libs/libdockapp-0.7:="
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/dockapps"
+
+PATCHES=( "${FILESDIR}"/${P}-Makefile.patch )
+
+DOCS=( README TODO example/{apps,defaults,extract_icon_back} )
+
+src_prepare() {
+       default
+       sed -e 's#<dockapp.h>#<libdockapp/dockapp.h>#' -i *.c || die
+}
+
+src_compile() {
+       emake  CC="$(tc-getCC)"
+}
+
+src_install() {
+       dobin wmmenu
+       doman wmmenu.1
+       einstalldocs
+}