# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.7.ebuild,v 1.1 2004/09/22 03:15:40 vapier Exp $ inherit flag-o-matic gnuconfig DESCRIPTION="A useful diagnostic, instructional, and debugging tool" HOMEPAGE="http://sourceforge.net/projects/strace/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 selinux? ( mirror://gentoo/${P}-selinux.patch )" LICENSE="as-is" SLOT="0" KEYWORDS="~arm ~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="static selinux" DEPEND="virtual/libc" src_unpack() { unpack ${A} cd ${S} use selinux && epatch ${DISTDIR}/${P}-selinux.patch gnuconfig_update # Compile fails with -O3 on sparc but works on x86 if [ "${ARCH}" == "sparc" -o "${ARCH}" == "" ]; then replace-flags -O[3-9] -O2 fi filter-lfs-flags use static && append-ldflags -static } src_install() { # Can't use make install because it is stupid and # doesn't make leading directories before trying to # install. Thus, one would have to make /usr/bin # and /usr/man/man1 (at least). # So, we do it by hand. doman strace.1 dobin strace strace-graph || die dodoc ChangeLog CREDITS NEWS PORTING README* TODO }