blob: 4bfd2ca64cb7cd43ae171566637c0106a68e3a3f (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kcollectd/kcollectd-0.9.ebuild,v 1.8 2011/04/24 14:10:27 dilfridge Exp $
EAPI=3
KDE_LINGUAS="de"
inherit fdo-mime kde4-base flag-o-matic
DESCRIPTION="Simple KDE-based live data viewer for collectd"
HOMEPAGE="http://www.forwiss.uni-passau.de/~berberic/Linux/kcollectd.html"
SRC_URI="http://www.forwiss.uni-passau.de/~berberic/Linux/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/boost
net-analyzer/rrdtool"
RDEPEND="${DEPEND}
|| ( app-admin/collectd[collectd_plugins_rrdtool] app-admin/collectd[collectd_plugins_rrdcached] )"
PATCHES=( "${FILESDIR}/${P}-cflags.patch" )
src_prepare() {
# Working around the eclass linguas magic is way more complicated than just
# force-enabling de. The files are organized differently here, and when the eclass
# removes de.po, the build fails...
local olduse=${USE}
USE+=" linguas_de"
kde4-base_src_prepare
USE=${olduse}
}
src_configure() {
append-flags -DBOOST_FILESYSTEM_VERSION=2
kde4-base_src_configure
}
pkg_postinst() {
kde4-base_pkg_postinst
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}
|