31 lines
578 B
Bash
31 lines
578 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="user-friendly program to show you what is using up all your disk space"
|
|
HOMEPAGE="http://xdiskusage.sourceforge.net/"
|
|
SRC_URI="${HOMEPAGE}${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
|
|
|
|
RDEPEND="
|
|
>=x11-libs/fltk-1.3:1
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
src_compile() {
|
|
emake \
|
|
CXXFLAGS="${CXXFLAGS} $(fltk-config --cxxflags)" \
|
|
LDLIBS="$(fltk-config --ldflags)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
doman ${PN}.1
|
|
dodoc README
|
|
}
|