diff options
author | 2006-12-30 02:53:53 +0000 | |
---|---|---|
committer | 2006-12-30 02:53:53 +0000 | |
commit | 89c8027849edef0410e7a96b353a22fd13e7c537 (patch) | |
tree | 6e0883b0fbc34499586a9b7bb116588f91329774 /sys-fs/cramfs/cramfs-1.1.ebuild | |
parent | Initial import. Ebuild submitted by Magnus Deininger #148586. (diff) | |
download | gentoo-2-89c8027849edef0410e7a96b353a22fd13e7c537.tar.gz gentoo-2-89c8027849edef0410e7a96b353a22fd13e7c537.tar.bz2 gentoo-2-89c8027849edef0410e7a96b353a22fd13e7c537.zip |
respect user CFLAGS/CC #157783 by Diego Pettenò
(Portage version: 2.1.2_rc4-r2)
Diffstat (limited to 'sys-fs/cramfs/cramfs-1.1.ebuild')
-rw-r--r-- | sys-fs/cramfs/cramfs-1.1.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys-fs/cramfs/cramfs-1.1.ebuild b/sys-fs/cramfs/cramfs-1.1.ebuild index d4eca469e9b8..d69b867af740 100644 --- a/sys-fs/cramfs/cramfs-1.1.ebuild +++ b/sys-fs/cramfs/cramfs-1.1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/cramfs/cramfs-1.1.ebuild,v 1.7 2005/09/16 11:24:51 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/cramfs/cramfs-1.1.ebuild,v 1.8 2006/12/30 02:53:53 vapier Exp $ + +inherit toolchain-funcs DESCRIPTION="Linux filesystem designed to be simple, small, and to compress things well" HOMEPAGE="http://sourceforge.net/projects/cramfs/" @@ -11,11 +13,10 @@ SLOT="0" KEYWORDS="alpha amd64 ppc ~sparc x86" IUSE="" -DEPEND="sys-libs/zlib - virtual/libc" +DEPEND="sys-libs/zlib" src_compile() { - emake || die + emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die } src_install() { |