You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-devel/prelink/prelink-20111012.ebuild

82 lines
2.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/prelink/prelink-20111012.ebuild,v 1.4 2012/07/22 20:37:32 vapier Exp $
EAPI="4"
inherit eutils flag-o-matic
DESCRIPTION="Modifies ELFs to avoid runtime symbol resolutions resulting in faster load times"
HOMEPAGE="http://people.redhat.com/jakub/prelink"
#SRC_URI="mirror://gentoo/${P}.tar.bz2"
SRC_URI="http://people.redhat.com/jakub/prelink/${P}.tar.bz2"
#
# if not available rip the distfile with rpm2targz from
# http://mirrors.kernel.org/fedora/development/rawhide/source/SRPMS/prelink-[ver].src.rpm
# track http://pkgs.fedoraproject.org/gitweb/?p=prelink.git;a=summary for
# version bumps
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 -arm ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND=">=dev-libs/elfutils-0.100[static-libs(+)]
!dev-libs/libelf
>=sys-libs/glibc-2.8"
RDEPEND="${DEPEND}
>=sys-devel/binutils-2.18"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${PN}-20061201-prelink-conf.patch
sed -i -e 's:undosyslibs.sh::' testsuite/Makefile.in #254201
sed -i -e '/^CC=/s: : -Wl,--disable-new-dtags :' testsuite/functions.sh #100147
# >=binutils-2.22 --no-copy-dt-needed-entries is the default
# --copy-dt-needed-entries was renamed from --add-needed in 2.21, use the
# former so we don't have to bump the dep
sed -i \
-e '/CCLINK=/s:\(CCLINK="$(CC)\):\1 -Wl,--add-needed :' \
-e '/CXXLINK=/s:\(CXXLINK="$(CXX)\):\1 -Wl,--add-needed :' \
testsuite/Makefile.in
has_version 'dev-libs/elfutils[threads]' && append-ldflags -pthread
# older GCCs don't support this flag
sed -i -e 's:-Wno-pointer-sign::' src/Makefile.in #325269
append-cflags -Wno-pointer-sign
strip-unsupported-flags
}
src_install() {
default
insinto /etc
doins doc/prelink.conf
exeinto /etc/cron.daily
newexe "${FILESDIR}"/prelink.cron prelink
newconfd "${FILESDIR}"/prelink.confd prelink
dodir /var/{lib/misc,log}
touch "${D}/var/lib/misc/prelink.full"
touch "${D}/var/lib/misc/prelink.quick"
touch "${D}/var/lib/misc/prelink.force"
touch "${D}/var/log/prelink.log"
}
pkg_postinst() {
echo
elog "You may wish to read the Gentoo Linux Prelink Guide, which can be"
elog "found online at:"
elog
elog " http://www.gentoo.org/doc/en/prelink-howto.xml"
elog
elog "Please edit /etc/conf.d/prelink to enable and configure prelink"
echo
touch "${ROOT}/var/lib/misc/prelink.force"
}