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/wmclock/wmclock-1.0.12.2.ebuild | |
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/wmclock/wmclock-1.0.12.2.ebuild')
-rw-r--r-- | x11-plugins/wmclock/wmclock-1.0.12.2.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
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 |