From: Michael Weber Date: Wed, 12 Aug 2015 22:14:54 +0000 (+0200) Subject: x11-plugins/wmcliphist: fix PREFIX during src_compile (bug 556862, thanks Robert... X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=087e1dfac479537b4f6cb541b5b0368bf924af69;p=gentoo.git x11-plugins/wmcliphist: fix PREFIX during src_compile (bug 556862, thanks Robert Cernansky). Package-Manager: portage-2.2.20.1 --- diff --git a/x11-plugins/wmcliphist/wmcliphist-2.1-r1.ebuild b/x11-plugins/wmcliphist/wmcliphist-2.1-r1.ebuild new file mode 100644 index 000000000000..f15d4cc7237d --- /dev/null +++ b/x11-plugins/wmcliphist/wmcliphist-2.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="Dockable clipboard history application for Window Maker" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmcliphist" +# Grab from http://windowmaker.org/dockapps/?download=${P}.tar.gz +SRC_URI="http://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:3" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/dockapps + +src_prepare() { + sed -e '/^PREFIX/s:=.*:=/usr:' \ + -i Makefile || die + tc-export CC +} + +src_install() { + default + + dodoc ChangeLog README + newdoc ${PN}rc ${PN}rc.sample +}