61 lines
1.3 KiB
Bash
61 lines
1.3 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-libs/libwww/libwww-5.4.0-r7.ebuild,v 1.18 2011/02/06 12:24:04 leio Exp $
|
|
|
|
inherit eutils multilib autotools
|
|
|
|
PATCHVER="1.2"
|
|
MY_P=w3c-${P}
|
|
|
|
DESCRIPTION="A general-purpose client side WEB API"
|
|
HOMEPAGE="http://www.w3.org/Library/"
|
|
SRC_URI="http://www.w3.org/Library/Distribution/${MY_P}.tgz
|
|
mirror://gentoo/${P}-patches-${PATCHVER}.tar.bz2"
|
|
|
|
LICENSE="W3C"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
|
|
IUSE="mysql ssl"
|
|
|
|
RDEPEND=">=sys-libs/zlib-1.1.4
|
|
mysql? ( virtual/mysql )
|
|
ssl? ( >=dev-libs/openssl-0.9.6 )"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/pkgconfig
|
|
dev-lang/perl"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
rm -f configure.in
|
|
EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_compile() {
|
|
if use mysql; then
|
|
myconf="--with-mysql=/usr/$(get_libdir)/mysql/libmysqlclient.a"
|
|
else
|
|
myconf="--without-mysql"
|
|
fi
|
|
|
|
export ac_cv_header_appkit_appkit_h=no
|
|
econf \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--with-zlib \
|
|
--with-md5 \
|
|
--with-expat \
|
|
$(use_with ssl) \
|
|
${myconf}
|
|
|
|
emake || die
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
dodoc ChangeLog
|
|
dohtml -r .
|
|
}
|