diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2016-01-04 13:47:08 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2016-01-04 13:56:48 +0100 |
commit | 3f0f2ae04e2fe912dc273b385dd59c99ac47c56e (patch) | |
tree | 465b980c1c0cd100623f9f923acd642acdeb5187 /x11-plugins/wminet/wminet-3.0.0-r1.ebuild | |
parent | x11-plugins/wmcube: fix compilation with gcc 5, bug #570064 (diff) | |
download | gentoo-3f0f2ae04e2fe912dc273b385dd59c99ac47c56e.tar.gz gentoo-3f0f2ae04e2fe912dc273b385dd59c99ac47c56e.tar.bz2 gentoo-3f0f2ae04e2fe912dc273b385dd59c99ac47c56e.zip |
x11-plugins/wminet: eapi bump, fix compilation with gcc 5, bug #569686
Package-Manager: portage-2.2.26
Diffstat (limited to 'x11-plugins/wminet/wminet-3.0.0-r1.ebuild')
-rw-r--r-- | x11-plugins/wminet/wminet-3.0.0-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/x11-plugins/wminet/wminet-3.0.0-r1.ebuild b/x11-plugins/wminet/wminet-3.0.0-r1.ebuild new file mode 100644 index 000000000000..0a9534615089 --- /dev/null +++ b/x11-plugins/wminet/wminet-3.0.0-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="dockapp for monitoring internet connections to and from your computer" +HOMEPAGE="http://www.swanson.ukfsn.org/#wminet" +SRC_URI="http://www.swanson.ukfsn.org/wmdock/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xextproto" + +src_prepare() { + epatch "${FILESDIR}"/${P}-list.patch + + tc-export CC +} + +src_compile() { + emake LDFLAGS="${LDFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README wminetrc +} |