diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-06-29 14:13:58 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-06-29 14:13:58 +0000 |
commit | 157ebff839b024fe5da005b40333e750eead12c1 (patch) | |
tree | 4a4553e993f04bac10dfa16d1fe2076b0539e6d2 /x11-plugins | |
parent | Fix deps for stable gpac to not include >=ffmpeg-0.4.9_p20080326. Fixes bug #... (diff) | |
download | gentoo-2-157ebff839b024fe5da005b40333e750eead12c1.tar.gz gentoo-2-157ebff839b024fe5da005b40333e750eead12c1.tar.bz2 gentoo-2-157ebff839b024fe5da005b40333e750eead12c1.zip |
quoting
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc3 x86_64)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmgtemp/wmgtemp-0.7.ebuild | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/x11-plugins/wmgtemp/wmgtemp-0.7.ebuild b/x11-plugins/wmgtemp/wmgtemp-0.7.ebuild index 15d4fe1cf0ac..9cc6084de7a2 100644 --- a/x11-plugins/wmgtemp/wmgtemp-0.7.ebuild +++ b/x11-plugins/wmgtemp/wmgtemp-0.7.ebuild @@ -1,8 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmgtemp/wmgtemp-0.7.ebuild,v 1.9 2007/07/22 05:05:27 dberkholz Exp $ - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmgtemp/wmgtemp-0.7.ebuild,v 1.10 2008/06/29 14:13:58 drac Exp $ DESCRIPTION="CPU and SYS temperature dockapp" HOMEPAGE="http://www.fluxcode.net" @@ -10,7 +8,8 @@ SRC_URI="http://www.fluxcode.net/${P}.tar.gz" LICENSE="Artistic" SLOT="0" -KEYWORDS="x86 -ppc -sparc amd64" +KEYWORDS="amd64 x86" +IUSE="" RDEPEND="x11-libs/libX11 x11-libs/libXext @@ -21,18 +20,17 @@ DEPEND="${RDEPEND} >=sys-apps/sed-4" src_unpack() { - unpack ${A} ; cd ${S}/src - sed -i -e "s:-Wall -g:\$(CFLAGS):" Makefile + unpack ${A} + cd "${S}" + sed -i -e "s:-Wall -g:\$(CFLAGS):" src/Makefile \ + || die "sed failed." } src_compile() { - emake || die "parallel make failed" + emake || die "emake failed." } src_install() { - cd ${S} dodoc BUGS CREDITS README TODO - - cd ${S}/src - dobin wmgtemp + dobin src/wmgtemp } |