Files
@ ed0a3db46525
Branch filter:
Location: ohnobinki_overlay/sys-devel/libtool/libtool-9999.ebuild - annotation
ed0a3db46525
1.4 KiB
application/vnd.gentoo.ebuild
media-libs/audiofile: Import media-libs/audiofile-0.2.7.
(Portage version: 2.2.0_alpha27-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
(Portage version: 2.2.0_alpha27-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
9c72f8d8b1ad 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 9c72f8d8b1ad 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e 1eaf22ecca1e | # Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-9999.ebuild,v 1.4 2009/09/13 14:46:53 flameeyes Exp $
inherit eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://git.savannah.gnu.org/libtool.git"
inherit git
else
SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
fi
DESCRIPTION="A shared library tool for developers"
HOMEPAGE="http://www.gnu.org/software/libtool/"
LICENSE="GPL-2"
SLOT="1.5"
KEYWORDS=""
IUSE="vanilla"
RDEPEND="sys-devel/gnuconfig
>=sys-devel/autoconf-2.62
>=sys-devel/automake-1.10.1"
DEPEND="${RDEPEND}
sys-apps/help2man"
S=${WORKDIR}/${ECVS_MODULE}
src_unpack() {
if [[ ${PV} == "9999" ]] ; then
git_src_unpack
cd "${S}"
./bootstrap || die
else
unpack ${A}
cd "${S}"
fi
use vanilla && return 0
epunt_cxx
epatch "${FILESDIR}"/${PV}/${P}-ltdl.m4-no-la.patch #293921
cd libltdl/m4
epatch "${FILESDIR}"/1.5.20/${PN}-1.5.20-use-linux-version-in-fbsd.patch #109105
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog* NEWS README THANKS TODO doc/PLATFORMS
local x
for x in libtool libtoolize ; do
help2man ${x} > ${x}.1
doman ${x}.1 || die
done
for x in $(find "${D}" -name config.guess -o -name config.sub) ; do
rm -f "${x}" ; ln -sf /usr/share/gnuconfig/${x##*/} "${x}"
done
}
|