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/dev-db/libdbi/libdbi-0.8.3.ebuild

48 lines
1.3 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild,v 1.22 2013/11/07 03:18:43 patrick Exp $
inherit eutils autotools multilib
DESCRIPTION="libdbi is a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://libdbi.sourceforge.net/"
LICENSE="LGPL-2.1"
RDEPEND=""
DEPEND=">=sys-apps/sed-4
virtual/pkgconfig
doc? ( app-text/openjade )
${RDEPEND}"
PDEPEND=">=dev-db/libdbi-drivers-0.8.3"
IUSE="doc"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
SLOT=0
src_unpack() {
unpack ${A}
chown -R portage:portage "${S}"
cd "${S}"
epatch "${FILESDIR}"/libdbi-0.8.1-pkg-config.patch
cp -f "${FILESDIR}"/dbi.pc.in "${S}"/dbi.pc.in
epatch "${FILESDIR}"/libdbi-0.8.3-doc-build-fix.patch
# configure.in has been changed
eautoreconf
}
src_compile() {
# should append CFLAGS, not replace them
sed -i.orig -e 's/^CFLAGS = /CFLAGS += /g' src/Makefile.in
econf $(use_enable doc docs)
emake || die "emake failed"
}
src_install () {
emake install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS ChangeLog README README.osx TODO
# syslog-ng requires dbi.pc
insinto /usr/$(get_libdir)/pkgconfig/
doins dbi.pc
}