blob: 624cdaf764b5e8582b583decab5db52bda0c789f (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/xdiskusage-1.48_p20111016.ebuild,v 1.2 2011/10/16 19:58:46 ssuominen Exp $
EAPI=4
inherit autotools
DESCRIPTION="front end to xdu for viewing disk usage graphically under X11"
HOMEPAGE="http://xdiskusage.sourceforge.net/"
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=x11-libs/fltk-1.3:1"
DEPEND="${RDEPEND}
app-arch/xz-utils"
src_prepare() { eautoreconf; }
src_compile() {
emake \
CXXFLAGS="${CXXFLAGS} $(fltk-config --cxxflags)" \
LDLIBS="$(fltk-config --ldflags)"
}
src_install() { dobin ${PN}; doman ${PN}.1; dodoc README; }
|