Files
@ e9c00ed814b3
Branch filter:
Location: ohnobinki_overlay/sys-apps/pacman/pacman-3.3.3.ebuild - annotation
e9c00ed814b3
1.1 KiB
application/vnd.gentoo.ebuild
dev-libs/DirectFB: Initial import from Gentoo's Portage
b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 06be13ff5ca5 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 06be13ff5ca5 b2de37529096 b2de37529096 b2de37529096 06be13ff5ca5 b2de37529096 b2de37529096 b2de37529096 b2de37529096 b2de37529096 06be13ff5ca5 b2de37529096 b2de37529096 06be13ff5ca5 11b598474ddc 11b598474ddc 11b598474ddc 11b598474ddc 11b598474ddc | # Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit autotools
DESCRIPTION="archlinux's binary package manager"
HOMEPAGE="http://archlinux.org/pacman/"
SRC_URI="ftp://ftp.archlinux.org/other/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug doc test"
RDEPEND="app-arch/libarchive
virtual/libiconv
virtual/libintl
sys-devel/gettext"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( dev-lang/python )"
src_prepare() {
sed -i -e '/-Werror/d' configure.ac || die "-Werror"
# acinclude.m4 overrides libtool macros from /usr/share/aclocal, causing
# elibtoolize's ltmain.sh to incompatible with ./configure after
# eautoreconf is run.
sed -i -e '4,/dnl Add some custom macros for pacman and libalpm/d' acinclude.m4 || die "libtool fix"
eautoreconf
}
src_configure() {
econf --disable-git-version \
--disable-internal-download \
$(use_enable debug) \
$(use_enable doc) \
$(use_enable doc doxygen)
}
src_install() {
emake DESTDIR="${D}" install || die
}
|