diff options
author | 2008-02-15 07:56:14 +0000 | |
---|---|---|
committer | 2008-02-15 07:56:14 +0000 | |
commit | 2f79af41de95544a5162da15f258e098efe13329 (patch) | |
tree | 0cd2d925503272cf692ca52a66ba55303331eccd /x11-plugins/wmSun/wmSun-1.03-r1.ebuild | |
parent | if user has FEATURES=preserve-libs, then we will let portage handle the savin... (diff) | |
download | gentoo-2-2f79af41de95544a5162da15f258e098efe13329.tar.gz gentoo-2-2f79af41de95544a5162da15f258e098efe13329.tar.bz2 gentoo-2-2f79af41de95544a5162da15f258e098efe13329.zip |
Revision bump, see bug #207898.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-plugins/wmSun/wmSun-1.03-r1.ebuild')
-rw-r--r-- | x11-plugins/wmSun/wmSun-1.03-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11-plugins/wmSun/wmSun-1.03-r1.ebuild b/x11-plugins/wmSun/wmSun-1.03-r1.ebuild new file mode 100644 index 000000000000..7112c7e6084a --- /dev/null +++ b/x11-plugins/wmSun/wmSun-1.03-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmSun/wmSun-1.03-r1.ebuild,v 1.1 2008/02/15 07:56:13 s4t4n Exp $ + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="dockapp which displays the rise/set time of the sun" +HOMEPAGE="http://dockapps.org/file.php/id/16" +SRC_URI="http://dockapps.org/download.php/id/23/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~mips ~ppc ~sparc" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xproto + x11-proto/xextproto" + +S="${WORKDIR}/${P}/${PN}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-makefile.patch +} + +src_compile() { + emake clean || die "make clean failed" + emake CC="$(tc-getCC)" LIBDIR="/usr/$(get_libdir)" || die "parallel make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc README ../{BUGS,TODO} +} |