blob: d651d779077d7069263f620a41f49acc42ab2144 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="user-friendly program to show you what is using up all your disk space"
HOMEPAGE="http://xdiskusage.sourceforge.net/"
SRC_URI="http://xdiskusage.sourceforge.net/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ppc x86"
RDEPEND="
>=x11-libs/fltk-1.3:1
"
BDEPEND="
${RDEPEND}
"
DEPEND="
${RDEPEND}
"
PATCHES=(
"${FILESDIR}"/${PN}-1.52-flags-order.patch
"${FILESDIR}"/${PN}-1.52-pathbuf.patch
)
src_compile() {
# override FLAGS set by configure
emake CXXFLAGS="${CXXFLAGS}"
}
src_install() {
dobin ${PN}
doman ${PN}.1
dodoc README
}
|