blob: ba61365afe3858bfb52424a941a4a72eb2db7c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/klibido/klibido-0.2.5.ebuild,v 1.9 2008/07/12 22:39:06 ingmar Exp $
inherit kde db-use
DESCRIPTION="KDE Linux Binaries Downloader"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://klibido.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ppc x86"
IUSE="debug"
RDEPEND=">=sys-libs/db-4.1"
DEPEND="${RDEPEND}
dev-libs/uulib"
need-kde 3
PATCHES=(
"${FILESDIR}"/${P}-gcc4.1.diff
"${FILESDIR}"/${P}+gcc-4.3.patch
)
src_unpack() {
kde_src_unpack
dbincldir="$(db_includedir 4.6 4.5 4.4 4.3 4.2 4.1)" || die "unable to find db"
einfo "db include dir = ${dbincldir}"
if [ ! -d ${dbincldir} ]; then
die "db include dir does not exist"
fi
sed -i \
-e "s,-I/usr/include/db4,-I${dbincldir}," \
"${S}"/src/Makefile.am
rm -f "${S}"/configure
}
src_compile() {
myconf="${myconf}
$(use_enable debug)
"
kde_src_compile
}
|