diff options
author | Dane Smith <smitdane@gmail.com> | 2010-08-26 15:44:29 -0400 |
---|---|---|
committer | Dane Smith <smitdane@gmail.com> | 2010-08-26 15:44:29 -0400 |
commit | 494f0e231bdfbda1001126e99319bdad16a45526 (patch) | |
tree | ef55b46d9379897c68c7de60e842aaad2dc2e008 /dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild | |
parent | Updated netpipe (diff) | |
parent | Remove mpatrol. Patch was committed to the main tree. (diff) | |
download | smithdanea-494f0e231bdfbda1001126e99319bdad16a45526.tar.gz smithdanea-494f0e231bdfbda1001126e99319bdad16a45526.tar.bz2 smithdanea-494f0e231bdfbda1001126e99319bdad16a45526.zip |
Merge branch 'master' of git+ssh://git.overlays.gentoo.org/user/smithdanea
Diffstat (limited to 'dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild')
-rw-r--r-- | dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild | 108 |
1 files changed, 0 insertions, 108 deletions
diff --git a/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild b/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild deleted file mode 100644 index 8981e90..0000000 --- a/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild,v 1.6 2009/09/23 17:25:21 patrick Exp $ - -inherit eutils flag-o-matic - -IUSE="X" - -DESCRIPTION="A link library for controlling and tracing dynamic memory allocation. Attempts to diagnose run-time errors that are caused by misuse of dynamically allocated memory. Simple integration via a single header." -SRC_URI="http://www.cbmamiga.demon.co.uk/mpatrol/files/${PN}_${PV}.tar.gz" -HOMEPAGE="http://www.cbmamiga.demon.co.uk/mpatrol/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~sparc" -S="${WORKDIR}/${PN}" - -# To use X, mpatrol requires Motif -DEPEND="!dev-lang/mercury - X? ( x11-libs/openmotif )" - -src_unpack() { - unpack ${A} - - cd ${S} - epatch "${FILESDIR}/${P}-soname.patch" - - #bug 272505 - epatch "${FILESDIR}/${P}-gcc44-glibc210.patch" - - cd ${S}/src - # [Bug 176592] textrel fix for dev-libs/mpatrol - epatch "${FILESDIR}/${PN}-textrel-fix.patch" - - sed -i \ - -e 's:#define MP_SYMBOL_LIBS , MP_LIBNAME(bfd), MP_LIBNAME(iberty):#define MP_SYMBOL_LIBS , MP_LIBNAME(bfd):' config.h \ - || die "sed config.h failed" - - cd ${S}/build/unix - sed -i \ - -e 's:^OFLAGS.= -O3:OFLAGS = ${OPT_FLAGS}:' Makefile \ - || die "sed Makefile for CFLAGS failed" - - sed -i \ - -e 's:$(LD) $(LDFLAGS) -o $@ $(SHARED_MPTOBJS):$(LD) $(LDFLAGS) -liberty -o $@ $(SHARED_MPTOBJS):' Makefile \ - || die "sed Makefile for fixing -libiberty failed" - - epatch "${FILESDIR}"/${PN}-ldflags.diff - - if use X; then - sed -i \ - -e 's:^GUISUP.= false:GUISUP = true:' Makefile \ - || die "sed Makefile for GUISUP failed" - fi -} - -src_compile() { - cd ${S}/build/unix - emake STRIPPROG=true OPT_FLAGS="${CFLAGS} -Wa,--noexecstack" LDOPTS="${LDFLAGS}" all || die "emake failed" -} - -# ** -# ** The install is straightforward, but a bit on the odd side. The author -# ** gives a list of things that need to be done, rather than attempt to -# ** make an install target. --nj -# ** -src_install () { - cd ${S}/build/unix - dobin mleak mpatrol mprof mptrace || die - dolib.so lib*.so.* || die - dolib.a lib*.a || die - - # Each lib needs a symlink from the .so level - #for L in lib*.so.*; do - # dosym $L /usr/lib/`echo $L | sed 's:^\([^\.]*\.so\).*:\1:'` - #done - - insinto /usr - cd ${S}/bin - dobin * || die - - insinto /usr/include/ - cd ${S}/src - doins mpatrol.h mpalloc.h mpdebug.h || die - - insinto /usr/include/mpatrol - doins ${S}/tools/*.h || die - - doman ${S}/man/man?/* || die - - cd ${S} - dodoc AUTHORS ChangeLog NEWS README THANKS VERSION pkg/lsm/*lsm || die - - cd ${S}/doc - dodoc *.dvi *.ps *.pdf *.txt || die - doinfo mpatrol.info || die - dohtml mpatrol.html || die - - docinto images - dodoc images/*.{eps,pdf} || die - - insinto /usr/share/doc/${PF}/html/images - doins images/*.jpg || die -} - -pkg_postinst() { - elog " Please review the documentation in /usr/share/doc/$PF" -} |