diff options
Diffstat (limited to 'dev-util/strace/strace-4.4-r1.ebuild')
-rw-r--r-- | dev-util/strace/strace-4.4-r1.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/dev-util/strace/strace-4.4-r1.ebuild b/dev-util/strace/strace-4.4-r1.ebuild deleted file mode 100644 index dd14f7ca9ff0..000000000000 --- a/dev-util/strace/strace-4.4-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.4-r1.ebuild,v 1.10 2003/09/06 20:28:41 msterret Exp $ - -# NOTE: For some reason, upstream has changed the naming scheme -# for the tarballs to something quite lame: -# strace_version-revision.tar.gz -# This makes it difficult for us to deal with, because portage -# is supposed to glean the package version information from the -# filename of the ebuild. Grr -# Thus, *MAINTAINER*: change the *revision* in the SRC_URI below -# by hand. Sorry, couldn't think of a better way. -# - Jon Nelson, 27 Apr 2002 - -DESCRIPTION="A usefull diagnostic, instructional, and debugging tool" -SRC_URI="mirror://sourceforge/strace/strace_4.4-1.tar.gz - selinux? mirror://gentoo/${P}-selinux.patch.bz2" -HOMEPAGE="http://www.wi.leidenuniv.nl/~wichert/strace/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ~ppc sparc alpha hppa arm" -IUSE="static selinux" -inherit eutils - -DEPEND="virtual/glibc - sys-devel/autoconf - selinux? ( sys-apps/selinux-small )" - -src_unpack() { - unpack ${A} - cd ${S} - - use selinux && epatch ${DISTDIR}/${P}-selinux.patch.bz2 - - if [ "${ARCH}" = "arm" ]; then - epatch ${FILESDIR}/${P}-arm.patch - epatch ${FILESDIR}/${P}-arm-configure.patch - fi -} - -src_compile() { - # Compile fails with -O3 on but works on x86, sparc untested - if [ "${ARCH}" == "sparc" -o "${ARCH}" == "" ]; then - if [ -n "${CFLAGS}" ]; then - CFLAGS=`echo ${CFLAGS} | sed -e 's:-O3:-O2:'` - fi - fi - - # -DHPPA need to be provided to gcc for compiling on hppa - if [ "${ARCH}" = "hppa" ] - then - CFLAGS="${CFLAGS} -DHPPA" - fi - - - # configure is broken by default for sparc and possibly others, regen - # from configure.in - use static && export LDFLAGS="${LDFLAGS} -static" - autoconf - ./configure --prefix=/usr || die - emake || die -} - -src_install() { - doman strace.1 - dobin strace strace-graph - dodoc ChangeLog COPYRIGHT CREDITS NEWS PORTING README* TODO -} |