x11-plugins/wmXName: EAPI7, improve ebuild
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 8 Jul 2018 12:00:45 +0000 (14:00 +0200)
committerBernard Cafarelli <voyageur@gentoo.org>
Thu, 19 Jul 2018 13:24:40 +0000 (15:24 +0200)
x11-plugins/wmXName/wmXName-0.1-r1.ebuild [new file with mode: 0644]

diff --git a/x11-plugins/wmXName/wmXName-0.1-r1.ebuild b/x11-plugins/wmXName/wmXName-0.1-r1.ebuild
new file mode 100644 (file)
index 0000000..425b4cb
--- /dev/null
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_PV="0.01"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="dock-app showing you status of your XName hosted zones"
+HOMEPAGE="http://source.xname.org/"
+SRC_URI="http://source.xname.org/${MY_P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+COMMON_DEPEND=">=x11-libs/libXpm-3.5.7
+       >=x11-libs/libX11-1.1.4
+       >=x11-libs/libXext-1.0.3"
+
+RDEPEND="${COMMON_DEPEND}
+       >=dev-lang/perl-5.8.8-r5
+       >=www-client/lynx-2.8.6-r2"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+       default
+       #some magic sed to fix CFLAGS
+       sed -i "s/-O2 -Wall/$CFLAGS/" "${S}/Makefile" || die
+
+       #INSTALL file actually contains use instructions
+       mv "${S}/INSTALL" "${S}/README" || die
+}
+
+src_compile() {
+       emake CC="$(tc-getCC)" SYSTEM="${LDFLAGS}"
+}
+
+src_install () {
+       dobin wmXName GrabXName
+       dodoc README config.sample
+}