blob: 71276e0559e1d47b5626f96a68ce46f70043288b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/klibido/klibido-0.2.3-r1.ebuild,v 1.3 2005/07/16 20:14:44 swegener Exp $
inherit kde versionator
DESCRIPTION="KDE Linux Binaries Downloader"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://klibido.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~amd64"
IUSE="debug"
DEPEND="dev-libs/uulib
>=sys-libs/db-4.1"
need-kde 3
src_unpack() {
kde_src_unpack
cd "${S}"
epatch "${FILESDIR}"/${PV}-availablegroups.patch
}
src_compile() {
local libdbver="$(best_version sys-libs/db)"
libdbver="${libdbver/sys-libs\/db-/}"
libdbver="$(get_version_component_range 1-2 ${libdbver})"
myconf="${myconf}
--datadir='${D}'/usr/share
--with-extra-includes=/usr/include/db${libdbver}/
$(use_enable debug)
"
kde_src_compile
}
|