diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2010-08-31 13:00:35 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2010-08-31 13:00:35 +0000 |
commit | 7c9625c295a7d9a59bfeb1056089a8b251190a4e (patch) | |
tree | 0a58127f531fd7a089475dceee3b5f4df2d7e898 /x11-plugins/wmfrog | |
parent | Raise gtk-doc requeriment as reported in bug #331407 by Siim Ainsaar, marlon ... (diff) | |
download | gentoo-2-7c9625c295a7d9a59bfeb1056089a8b251190a4e.tar.gz gentoo-2-7c9625c295a7d9a59bfeb1056089a8b251190a4e.tar.bz2 gentoo-2-7c9625c295a7d9a59bfeb1056089a8b251190a4e.zip |
Honour LDFLAGS. Closes bug #335388.
Wiped out older revision.
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'x11-plugins/wmfrog')
-rw-r--r-- | x11-plugins/wmfrog/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild | 4 | ||||
-rw-r--r-- | x11-plugins/wmfrog/wmfrog-0.2.0.ebuild | 32 |
3 files changed, 8 insertions, 35 deletions
diff --git a/x11-plugins/wmfrog/ChangeLog b/x11-plugins/wmfrog/ChangeLog index e80706f8f58f..6b49bdad3168 100644 --- a/x11-plugins/wmfrog/ChangeLog +++ b/x11-plugins/wmfrog/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/wmfrog # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfrog/ChangeLog,v 1.10 2010/05/18 12:56:52 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfrog/ChangeLog,v 1.11 2010/08/31 13:00:34 s4t4n Exp $ + + 31 Aug 2010; Michele Noberasco <s4t4n@gentoo.org> wmfrog-0.2.0-r1.ebuild: + Honour LDFLAGS. Closes bug #335388. + wmfrog-0.2.0.ebuild: + Wiped out older revision. 18 May 2010; Markos Chandras <hwoarang@gentoo.org> wmfrog-0.2.0-r1.ebuild: Stable on amd64 wrt bug #280361 diff --git a/x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild b/x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild index 8cac20fa6fd1..0d8b6d2a876f 100644 --- a/x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild +++ b/x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild,v 1.3 2010/05/18 12:56:52 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfrog/wmfrog-0.2.0-r1.ebuild,v 1.4 2010/08/31 13:00:34 s4t4n Exp $ EAPI=2 inherit eutils toolchain-funcs @@ -28,7 +28,7 @@ src_prepare() { src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" INCDIR="" \ - LIBDIR="" || die "emake failed." + LIBDIR="" SYSTEM="${LDFLAGS}" || die "emake failed." } src_install() { diff --git a/x11-plugins/wmfrog/wmfrog-0.2.0.ebuild b/x11-plugins/wmfrog/wmfrog-0.2.0.ebuild deleted file mode 100644 index 3a6418c82e2e..000000000000 --- a/x11-plugins/wmfrog/wmfrog-0.2.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfrog/wmfrog-0.2.0.ebuild,v 1.2 2009/08/16 17:22:38 gentoofan23 Exp $ - -inherit toolchain-funcs - -DESCRIPTION="a weather application, it shows the weather in a graphical way." -HOMEPAGE="http://wiki.colar.net/wmfrog_dockapp" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc ~x86" -IUSE="" - -RDEPEND="x11-libs/libXext - x11-libs/libXpm - x11-libs/libX11" -DEPEND="${RDEPEND} - x11-proto/xextproto" - -S=${WORKDIR}/Src - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" INCDIR="" \ - LIBDIR="" || die "emake failed." -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc ../{CHANGES,HINTS} -} |