| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.6.1-r3.ebuild,v 1.3 2012/04/25 08:35:26 jdhore Exp $ |
| 4 |
|
| 5 |
EAPI=2 |
| 6 |
inherit autotools eutils flag-o-matic toolchain-funcs multilib pax-utils |
| 7 |
|
| 8 |
DESCRIPTION="An open-source memory debugger for GNU/Linux" |
| 9 |
HOMEPAGE="http://www.valgrind.org" |
| 10 |
SRC_URI="http://www.valgrind.org/downloads/${P}.tar.bz2" |
| 11 |
|
| 12 |
LICENSE="GPL-2" |
| 13 |
SLOT="0" |
| 14 |
KEYWORDS="-* amd64 ~arm x86 ~amd64-linux ~x86-linux" |
| 15 |
IUSE="mpi qt4" |
| 16 |
|
| 17 |
DEPEND="mpi? ( virtual/mpi )" |
| 18 |
RDEPEND="${DEPEND}" |
| 19 |
|
| 20 |
src_prepare() { |
| 21 |
# Respect CFLAGS, LDFLAGS |
| 22 |
sed -i -e '/^CPPFLAGS =/d' -e '/^CFLAGS =/d' -e '/^LDFLAGS =/d' \ |
| 23 |
mpi/Makefile.am || die |
| 24 |
|
| 25 |
# Changing Makefile.all.am to disable SSP |
| 26 |
sed -i -e 's:^AM_CFLAGS_BASE = :AM_CFLAGS_BASE = -fno-stack-protector :' \ |
| 27 |
Makefile.all.am || die |
| 28 |
|
| 29 |
# Correct hard coded doc location |
| 30 |
sed -i -e "s:doc/valgrind:doc/${PF}:" \ |
| 31 |
docs/Makefile.am || die |
| 32 |
|
| 33 |
# Yet more local labels, this time for ppc32 & ppc64 |
| 34 |
epatch "${FILESDIR}"/${PN}-3.6.0-local-labels.patch |
| 35 |
|
| 36 |
# Don't build in empty assembly files for other platforms or we'll get a QA |
| 37 |
# warning about executable stacks. |
| 38 |
epatch "${FILESDIR}"/${PN}-3.6.0-non-exec-stack.patch |
| 39 |
|
| 40 |
# Fix up some suppressions that were not general enough for glibc versions |
| 41 |
# with more than just a major and minor number. |
| 42 |
epatch "${FILESDIR}"/${PN}-3.4.1-glibc-2.10.1.patch |
| 43 |
|
| 44 |
# Remove automagic dependency on qt4 |
| 45 |
epatch "${FILESDIR}"/${PN}-3.6.1-user-enable-qt4.patch |
| 46 |
|
| 47 |
# Allow valgrind to build against linux-3, bug #370857 |
| 48 |
epatch "${FILESDIR}"/${PN}-3.6.1-linux-3.patch |
| 49 |
|
| 50 |
# Allow valgrind to build against glibc-2.14, bug #378157 |
| 51 |
epatch "${FILESDIR}"/${PN}-3.6.1-glibc-2.14.patch |
| 52 |
|
| 53 |
# Back port of fix for bug #403179, https://bugs.kde.org/show_bug.cgi?id=277045 |
| 54 |
epatch "${FILESDIR}"/${PN}-3.6.1-fix-unhandled-opcode.patch |
| 55 |
|
| 56 |
# Fix stricter use of dir variables, bugs #397429 and #403779 |
| 57 |
epatch "${FILESDIR}"/${PN}-3.6.1-automake-1.11.3.patch |
| 58 |
|
| 59 |
# Regenerate autotools files |
| 60 |
eautoreconf |
| 61 |
} |
| 62 |
|
| 63 |
src_configure() { |
| 64 |
local myconf |
| 65 |
|
| 66 |
# -fomit-frame-pointer "Assembler messages: Error: junk `8' after expression" |
| 67 |
# while compiling insn_sse.c in none/tests/x86 |
| 68 |
# -fpie valgrind seemingly hangs when built with pie on |
| 69 |
# amd64 (bug #102157) |
| 70 |
# -fstack-protector more undefined references to __guard and __stack_smash_handler |
| 71 |
# because valgrind doesn't link to glibc (bug #114347) |
| 72 |
# -ggdb3 segmentation fault on startup |
| 73 |
filter-flags -fomit-frame-pointer |
| 74 |
filter-flags -fpie |
| 75 |
filter-flags -fstack-protector |
| 76 |
replace-flags -ggdb3 -ggdb2 |
| 77 |
|
| 78 |
if use amd64 || use ppc64; then |
| 79 |
! has_multilib_profile && myconf="${myconf} --enable-only64bit" |
| 80 |
fi |
| 81 |
|
| 82 |
# Don't use mpicc unless the user asked for it (bug #258832) |
| 83 |
if ! use mpi; then |
| 84 |
myconf="${myconf} --without-mpicc" |
| 85 |
fi |
| 86 |
|
| 87 |
if ! use qt4; then |
| 88 |
myconf="${myconf} --disable-qtcore" |
| 89 |
fi |
| 90 |
|
| 91 |
econf ${myconf} |
| 92 |
} |
| 93 |
|
| 94 |
src_install() { |
| 95 |
emake DESTDIR="${D}" install || die |
| 96 |
dodoc AUTHORS FAQ.txt NEWS README* |
| 97 |
|
| 98 |
pax-mark m "${D}"/usr/$(get_libdir)/valgrind/*-*-linux |
| 99 |
} |
| 100 |
|
| 101 |
pkg_postinst() { |
| 102 |
ewarn "Valgrind will not work if glibc does not have debug symbols." |
| 103 |
ewarn "To fix this you can add splitdebug to FEATURES in make.conf" |
| 104 |
ewarn "and remerge glibc. See:" |
| 105 |
ewarn "https://bugs.gentoo.org/show_bug.cgi?id=214065" |
| 106 |
ewarn "https://bugs.gentoo.org/show_bug.cgi?id=274771" |
| 107 |
ewarn "https://bugs.gentoo.org/show_bug.cgi?id=388703" |
| 108 |
} |