diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-10-05 16:45:45 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-10-05 16:54:58 +0300 |
commit | 49ea817033588f00e703dcc19ffa19d3326d5e56 (patch) | |
tree | b774204c8af3f44280893f0764d7d39175fb0002 /x11-plugins/wmsystray | |
parent | x11-plugins/wmsystray: amd64 stable wrt bug #666088 (diff) | |
download | gentoo-49ea817033588f00e703dcc19ffa19d3326d5e56.tar.gz gentoo-49ea817033588f00e703dcc19ffa19d3326d5e56.tar.bz2 gentoo-49ea817033588f00e703dcc19ffa19d3326d5e56.zip |
x11-plugins/wmsystray: Drop old
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
Diffstat (limited to 'x11-plugins/wmsystray')
-rw-r--r-- | x11-plugins/wmsystray/wmsystray-0.1.1.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild b/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild deleted file mode 100644 index 470cb2956245..000000000000 --- a/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -DESCRIPTION="Window Maker dock app that provides a system tray for GNOME/KDE applications" -HOMEPAGE="https://github.com/bbidulock/wmsystray" -SRC_URI="https://github.com/bbidulock/wmsystray/releases/download/${PV}/${P}.tar.bz2" - -RDEPEND="x11-libs/libX11 - x11-libs/libXpm" -DEPEND="${RDEPEND}" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ppc ~sparc x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Let's honour Gentoo CFLAGS and use correct install program - epatch "${FILESDIR}/${P}-Makefile.patch" - - # Fix for #61704, cannot compile with gcc 3.4.1: - # it's a trivial change and does not affect other compilers... - epatch "${FILESDIR}/${P}-gcc-3.4.patch" - - # Fix parallel compilation - sed -ie "s/make EXTRACFLAGS/make \${MAKEOPTS} EXTRACFLAGS/" Makefile - - # Honour Gentoo LDFLAGS, see bug #336296 - sed -ie "s/-o wmsystray/${LDFLAGS} -o wmsystray/" wmsystray/Makefile -} - -src_compile() { - emake EXTRACFLAGS="${CFLAGS}" || die "emake failed" -} - -src_install() { - einstall || die "einstall failed" - dodoc AUTHORS HACKING README || die - - domenu "${FILESDIR}/${PN}.desktop" -} |