diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-10-08 09:29:37 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-10-08 09:29:37 +0000 |
commit | 0f7c35beb42473e7b44593d7db09720b1e112f64 (patch) | |
tree | ce1788cba028ebbd153c3782ad9e31ae8e5a8d63 /games-board/xmille | |
parent | Version Bump for mono-2.8. (diff) | |
download | gentoo-2-0f7c35beb42473e7b44593d7db09720b1e112f64.tar.gz gentoo-2-0f7c35beb42473e7b44593d7db09720b1e112f64.tar.bz2 gentoo-2-0f7c35beb42473e7b44593d7db09720b1e112f64.zip |
Respect LDFLAGS. Bug #336826
(Portage version: 2.1.9.13/cvs/Linux i686)
Diffstat (limited to 'games-board/xmille')
-rw-r--r-- | games-board/xmille/ChangeLog | 7 | ||||
-rw-r--r-- | games-board/xmille/xmille-2.0-r1.ebuild | 16 |
2 files changed, 13 insertions, 10 deletions
diff --git a/games-board/xmille/ChangeLog b/games-board/xmille/ChangeLog index 6017f8dc4fc3..f384a826a12b 100644 --- a/games-board/xmille/ChangeLog +++ b/games-board/xmille/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-board/xmille -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/xmille/ChangeLog,v 1.10 2006/12/01 21:13:02 wolf31o2 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/xmille/ChangeLog,v 1.11 2010/10/08 09:29:37 tupone Exp $ + + 08 Oct 2010; Tupone Alfredo <tupone@gentoo.org> xmille-2.0-r1.ebuild: + Respect LDFLAGS. Bug #336826 by flameeyes@gentoo.org 01 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org> xmille-2.0-r1.ebuild: Removing old virtual/x11 dependency. diff --git a/games-board/xmille/xmille-2.0-r1.ebuild b/games-board/xmille/xmille-2.0-r1.ebuild index 6f6c26875a13..faa9ee40969a 100644 --- a/games-board/xmille/xmille-2.0-r1.ebuild +++ b/games-board/xmille/xmille-2.0-r1.ebuild @@ -1,6 +1,7 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/xmille/xmille-2.0-r1.ebuild,v 1.11 2006/12/01 21:13:02 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/xmille/xmille-2.0-r1.ebuild,v 1.12 2010/10/08 09:29:37 tupone Exp $ +EAPI="2" inherit eutils games @@ -22,15 +23,14 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${P}.orig -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${WORKDIR}/${PN}_${PV}-${DEB_PATCH_VER}.diff" +PATCHES=( "${WORKDIR}"/${PN}_${PV}-${DEB_PATCH_VER}.diff ) + +src_configure() { + xmkmf } src_compile() { - xmkmf - emake -j1 || die "emake failed" + emake -j1 EXTRA_LDOPTIONS="${LDFLAGS}" || die "emake failed" } src_install() { |