blob: 92f79efaac48a156419f6f8dc62311a64ca33130 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/filelight/filelight-1.0_beta2-r2.ebuild,v 1.1 2004/10/30 18:00:42 carlo Exp $
inherit kde flag-o-matic
MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Filelight is a tool to display where the space is used on the harddisk"
HOMEPAGE="http://www.methylblue.com/filelight/"
SRC_URI="http://www.methylblue.com/filelight/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64 ~hppa"
IUSE="arts"
need-kde 3
src_compile() {
local myconf
use arts || myconf="${myconf} --without-arts"
# Unconditionally use -fPIC for libs (#55238)
sed -e '/^CPPFLAGS/s/$/ -fPIC/' -i src/part/radialmap/Makefile.in
kde_src_compile all
}
|