diff options
Diffstat (limited to 'x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild')
-rw-r--r-- | x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild b/x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild new file mode 100644 index 000000000000..d0eefbe6fdbd --- /dev/null +++ b/x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild,v 1.1 2008/02/01 12:21:12 s4t4n Exp $ + +inherit autotools eutils + +DESCRIPTION="lm_sensors monitoring docklet." +HOMEPAGE="http://www.geocities.com/wmalms" +SRC_URI="http://www.geocities.com/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/libXext + x11-libs/libXpm + x11-libs/libX11 + sys-apps/lm_sensors" +DEPEND="${RDEPEND} + x11-proto/xextproto + x11-proto/xproto + x11-libs/libXt" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-configure.patch + epatch "${FILESDIR}"/${P}-makefile.patch + eautoreconf +} + +src_compile() { + econf --docdir="/usr/share/doc/${PF}" + emake || die "compile failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" +} |