diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-06 07:24:38 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-06 07:24:38 +0000 |
commit | 3dff481a38461a901368719f687fc13459e33316 (patch) | |
tree | f1b3b09bfbd687f4d099c876d6dc76438142ddc7 /x11-plugins | |
parent | Wiped out older version, see bug #332065. (diff) | |
download | gentoo-2-3dff481a38461a901368719f687fc13459e33316.tar.gz gentoo-2-3dff481a38461a901368719f687fc13459e33316.tar.bz2 gentoo-2-3dff481a38461a901368719f687fc13459e33316.zip |
Honour Gentoo CFLAGS and LDFLAGS. Closes bug #336133.
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmclock/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmclock/wmclock-1.0.12.2.ebuild | 11 |
2 files changed, 14 insertions, 4 deletions
diff --git a/x11-plugins/wmclock/ChangeLog b/x11-plugins/wmclock/ChangeLog index 6667bd80758b..fc4f0a8f5cf6 100644 --- a/x11-plugins/wmclock/ChangeLog +++ b/x11-plugins/wmclock/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/wmclock -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmclock/ChangeLog,v 1.9 2007/07/22 05:18:26 dberkholz Exp $ +# Copyright 2000-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmclock/ChangeLog,v 1.10 2010/09/06 07:24:38 s4t4n Exp $ + + 06 Sep 2010; Michele Noberasco <s4t4n@gentoo.org>; wmclock-1.0.12.2.ebuild: + Honour Gentoo CFLAGS and LDFLAGS. Closes bug #336133. 22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; wmclock-1.0.12.2.ebuild: diff --git a/x11-plugins/wmclock/wmclock-1.0.12.2.ebuild b/x11-plugins/wmclock/wmclock-1.0.12.2.ebuild index a03f89b53b12..da683e685561 100644 --- a/x11-plugins/wmclock/wmclock-1.0.12.2.ebuild +++ b/x11-plugins/wmclock/wmclock-1.0.12.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmclock/wmclock-1.0.12.2.ebuild,v 1.12 2008/06/29 13:54:02 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmclock/wmclock-1.0.12.2.ebuild,v 1.13 2010/09/06 07:24:38 s4t4n Exp $ DESCRIPTION="a dockapp that displays time and date (same style as NEXTSTEP(tm) operating systems)" SRC_URI="http://www.jmknoble.net/WindowMaker/wmclock/${P}.tar.gz" @@ -20,6 +20,13 @@ DEPEND="${RDEPEND} x11-misc/gccmakedep x11-misc/imake" +src_compile() +{ + cd "${S}" + econf || die "config failed" + emake CDEBUGFLAGS="${CFLAGS}" LDOPTIONS="${LDFLAGS}" || die "make failed" +} + src_install() { dobin wmclock || die "dobin failed." newman wmclock.man wmclock.1 |