diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2009-02-06 14:10:48 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2009-02-06 14:10:48 +0000 |
commit | d4ee669cc0fc95141c74c73254a8395ed73d0c34 (patch) | |
tree | a6822439d57bf7f3f86466861cca8d08dcd93e8c /media-sound/substract_wave | |
parent | Fix --as-needed bug #247373 (diff) | |
download | gentoo-2-d4ee669cc0fc95141c74c73254a8395ed73d0c34.tar.gz gentoo-2-d4ee669cc0fc95141c74c73254a8395ed73d0c34.tar.bz2 gentoo-2-d4ee669cc0fc95141c74c73254a8395ed73d0c34.zip |
added math library, because some compilations needs it (depends on CFLAGS).
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'media-sound/substract_wave')
-rw-r--r-- | media-sound/substract_wave/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/substract_wave/substract_wave-0.3.ebuild | 6 |
2 files changed, 10 insertions, 5 deletions
diff --git a/media-sound/substract_wave/ChangeLog b/media-sound/substract_wave/ChangeLog index 8c68e3434c6d..3719f9bc2ad7 100644 --- a/media-sound/substract_wave/ChangeLog +++ b/media-sound/substract_wave/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/substract_wave -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/substract_wave/ChangeLog,v 1.1 2007/10/06 14:52:19 sbriesen Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/substract_wave/ChangeLog,v 1.2 2009/02/06 14:10:48 sbriesen Exp $ + + 06 Feb 2009; Stefan Briesenick <sbriesen@gentoo.org> + substract_wave-0.3.ebuild: + added math library, because some compilations needs it (depends on + CFLAGS). *substract_wave-0.3 (06 Oct 2007) diff --git a/media-sound/substract_wave/substract_wave-0.3.ebuild b/media-sound/substract_wave/substract_wave-0.3.ebuild index 1694ce51682c..a6bd3fb13f5a 100644 --- a/media-sound/substract_wave/substract_wave-0.3.ebuild +++ b/media-sound/substract_wave/substract_wave-0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/substract_wave/substract_wave-0.3.ebuild,v 1.1 2007/10/06 14:52:19 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/substract_wave/substract_wave-0.3.ebuild,v 1.2 2009/02/06 14:10:48 sbriesen Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -22,7 +22,7 @@ src_unpack() { src_compile() { append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LIBRARY="-lm" || die "emake failed" } src_install() { |