diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2014-10-27 10:49:52 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2014-10-27 10:49:52 +0000 |
commit | 6c7356a070366c74b920b810281b8d6245b6c4d4 (patch) | |
tree | ce592ec233c28013b5bbe4ae146a60b66a60e215 /x11-plugins/wmifs | |
parent | Unmask kde-frameworks/kf-env which was accidentally masked - it has no deps. (diff) | |
download | gentoo-2-6c7356a070366c74b920b810281b8d6245b6c4d4.tar.gz gentoo-2-6c7356a070366c74b920b810281b8d6245b6c4d4.tar.bz2 gentoo-2-6c7356a070366c74b920b810281b8d6245b6c4d4.zip |
Version bump with new homepage, ebuild cleanup
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Diffstat (limited to 'x11-plugins/wmifs')
-rw-r--r-- | x11-plugins/wmifs/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/wmifs/wmifs-1.4.ebuild | 37 |
2 files changed, 44 insertions, 2 deletions
diff --git a/x11-plugins/wmifs/ChangeLog b/x11-plugins/wmifs/ChangeLog index ed310d43a808..a80a23be9fb3 100644 --- a/x11-plugins/wmifs/ChangeLog +++ b/x11-plugins/wmifs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/wmifs -# Copyright 2002-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmifs/ChangeLog,v 1.21 2010/09/09 10:01:48 s4t4n Exp $ +# Copyright 2002-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmifs/ChangeLog,v 1.22 2014/10/27 10:49:52 voyageur Exp $ + +*wmifs-1.4 (27 Oct 2014) + + 27 Oct 2014; Bernard Cafarelli <voyageur@gentoo.org> +wmifs-1.4.ebuild: + Version bump with new homepage, ebuild cleanup 09 Sep 2010; Michele Noberasco <s4t4n@gentoo.org>; wmifs-1.3_beta1-r2.ebuild: Honour Gentoo LDFLAGS, see bug #336537. diff --git a/x11-plugins/wmifs/wmifs-1.4.ebuild b/x11-plugins/wmifs/wmifs-1.4.ebuild new file mode 100644 index 000000000000..9aa59286a1f7 --- /dev/null +++ b/x11-plugins/wmifs/wmifs-1.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmifs/wmifs-1.4.ebuild,v 1.1 2014/10/27 10:49:52 voyageur Exp $ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="Network monitoring dockapp" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmtime" +SRC_URI="http://windowmaker.org/dockapps/?download=${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xextproto" + +S=${WORKDIR}/dockapps/${PN} + +src_prepare() { + # Honour Gentoo LDFLAGS, see bug #336537 + sed -i "s/-o wmifs/\$(LDFLAGS) -o wmifs/" Makefile || die "sed failed" +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" prefix=/usr install + dodoc ../BUGS ../CHANGES ../HINTS ../README ../TODO +} |