summary says it all -- the patch below adds this option. --- strace-4.4.98.ebuild.org 2003-10-22 19:07:18.000000000 +0200 +++ strace-4.4.98.ebuild 2003-12-18 22:44:55.000000000 +0100 @@ -6,7 +6,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.wi.leidenuniv.nl/~wichert/strace/" -IUSE="" +IUSE="static" SLOT="0" LICENSE="as-is" KEYWORDS="x86 ppc sparc ~alpha hppa ~mips amd64 ia64" @@ -23,7 +23,11 @@ # configure is broken by default for sparc and possibly others, regen # from configure.in autoconf - ./configure --prefix=/usr || die + if use static; then + LDFLAGS="-static" ./configure --prefix=/usr || die + else + ./configure --prefix=/usr || die + fi emake || die } Reproducible: Always Steps to Reproduce:
in cvs thx
We should not overwrite LDFLAGS (we should append to them) for static
Like this. use static && append-ldflags -static