diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-10 14:54:25 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-10 14:54:25 +0000 |
commit | 5fd53b19aaa1e36b38ef7647c69c9946c12f9287 (patch) | |
tree | 5a823ae3cd7a0694f4f075470239d0c22f8c6b2d /dev-libs/libowfat | |
parent | Removing =dev-libs/dietlibc-0.32 since it is no longer in the tree (diff) | |
download | gentoo-2-5fd53b19aaa1e36b38ef7647c69c9946c12f9287.tar.gz gentoo-2-5fd53b19aaa1e36b38ef7647c69c9946c12f9287.tar.bz2 gentoo-2-5fd53b19aaa1e36b38ef7647c69c9946c12f9287.zip |
append-flags -fomit-frame-pointer wrt #262663.
(Portage version: 2.2_rc36/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libowfat')
-rw-r--r-- | dev-libs/libowfat/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/libowfat/libowfat-0.28-r1.ebuild | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/dev-libs/libowfat/ChangeLog b/dev-libs/libowfat/ChangeLog index c1118015bc50..c6a33662d8f0 100644 --- a/dev-libs/libowfat/ChangeLog +++ b/dev-libs/libowfat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libowfat # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/ChangeLog,v 1.25 2009/08/10 14:43:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/ChangeLog,v 1.26 2009/08/10 14:54:25 ssuominen Exp $ + + 10 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> + libowfat-0.28-r1.ebuild: + append-flags -fomit-frame-pointer wrt #262663. *libowfat-0.28-r1 (10 Aug 2009) diff --git a/dev-libs/libowfat/libowfat-0.28-r1.ebuild b/dev-libs/libowfat/libowfat-0.28-r1.ebuild index a38054db5089..e11ec77c9120 100644 --- a/dev-libs/libowfat/libowfat-0.28-r1.ebuild +++ b/dev-libs/libowfat/libowfat-0.28-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/libowfat-0.28-r1.ebuild,v 1.1 2009/08/10 14:43:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/libowfat-0.28-r1.ebuild,v 1.2 2009/08/10 14:54:25 ssuominen Exp $ EAPI=2 +inherit flag-o-matic DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein." SRC_URI="http://dl.fefe.de/${P}.tar.bz2" @@ -17,6 +18,11 @@ RDEPEND=">=dev-libs/dietlibc-0.33_pre20090721" DEPEND="${RDEPEND} >=sys-apps/sed-4" +pkg_setup() { + # Required for mult/umult64.c to be usable + append-flags -fomit-frame-pointer +} + src_prepare() { sed -e "s:^CFLAGS.*:CFLAGS=-I. ${CFLAGS}:" \ -e "s:^DIET.*:DIET=/usr/bin/diet -Os:" \ |