diff options
author | 2006-03-07 15:52:29 +0000 | |
---|---|---|
committer | 2006-03-07 15:52:29 +0000 | |
commit | 846e1b37a8dd868b513d5946e2b4bbf44f265da1 (patch) | |
tree | dbc4ed5d783caeadf285fa12e69d0190b8bca61c /media-sound/smixer | |
parent | Drop virtual/libc dependency. Respect CC. (diff) | |
download | historical-846e1b37a8dd868b513d5946e2b4bbf44f265da1.tar.gz historical-846e1b37a8dd868b513d5946e2b4bbf44f265da1.tar.bz2 historical-846e1b37a8dd868b513d5946e2b4bbf44f265da1.zip |
Drop virtual/libc dependency. Respect CC, CFLAGS and LDFLAGS.
Package-Manager: portage-2.1_pre5-r4
Diffstat (limited to 'media-sound/smixer')
-rw-r--r-- | media-sound/smixer/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/smixer/Manifest | 10 | ||||
-rw-r--r-- | media-sound/smixer/smixer-1.0.1.ebuild | 13 |
3 files changed, 22 insertions, 8 deletions
diff --git a/media-sound/smixer/ChangeLog b/media-sound/smixer/ChangeLog index 56180679fbbe..cce4c5d642f8 100644 --- a/media-sound/smixer/ChangeLog +++ b/media-sound/smixer/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/smixer -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/smixer/ChangeLog,v 1.9 2004/07/01 07:58:59 eradicator Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/smixer/ChangeLog,v 1.10 2006/03/07 15:52:29 flameeyes Exp $ + + 07 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> smixer-1.0.1.ebuild: + Drop virtual/libc dependency. Respect CC, CFLAGS and LDFLAGS. 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> smixer-1.0.1.ebuild: virtual/glibc -> virtual/libc diff --git a/media-sound/smixer/Manifest b/media-sound/smixer/Manifest index e089edda09d7..2b743413efd5 100644 --- a/media-sound/smixer/Manifest +++ b/media-sound/smixer/Manifest @@ -1,3 +1,6 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 d03b472eee7122531e679d347fa07042 ChangeLog 1408 RMD160 aeef8ecb25ac981b21e372c367d37bb2b68e0bf8 ChangeLog 1408 SHA256 734a8ee3c3ec8245dcce724441925183b1708a5bc900fb9f0fed2abb7abe4efa ChangeLog 1408 @@ -10,3 +13,10 @@ SHA256 dfb5b47e6836db39fb187301dfcff1c2605e91d13d21db160806a563d8c75f9b metadata MD5 9f0043eab6dba048178c3a882b44647d smixer-1.0.1.ebuild 825 RMD160 b0781b7a8c36b5c4f5b50e4fc2a06282ac65eaa5 smixer-1.0.1.ebuild 825 SHA256 89e838c27d682819965fa4cb7b267a5ba40d011acffaca3986886ba429a6adba smixer-1.0.1.ebuild 825 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2.1 (GNU/Linux) + +iD8DBQFEDaxJAiZjviIA2XgRAkiwAKDs+rXM0TFykVwWQXegA7RtA9ZRYACeMxnH +8EpbWX4SNDvD3FNph5FKIdQ= +=a9lE +-----END PGP SIGNATURE----- diff --git a/media-sound/smixer/smixer-1.0.1.ebuild b/media-sound/smixer/smixer-1.0.1.ebuild index 2b517e91010c..c6f8fba13eca 100644 --- a/media-sound/smixer/smixer-1.0.1.ebuild +++ b/media-sound/smixer/smixer-1.0.1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/smixer/smixer-1.0.1.ebuild,v 1.15 2004/07/01 07:58:59 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/smixer/smixer-1.0.1.ebuild,v 1.16 2006/03/07 15:52:29 flameeyes Exp $ + +inherit toolchain-funcs IUSE="" @@ -12,12 +14,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc hppa amd64 sparc" -DEPEND="virtual/libc" - -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" src_compile() { - emake || die + emake LD="$(tc-getCC)" CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}" || die } src_install () { |