2024-12-27 12:14:04 +03:00
|
|
|
# Copyright 1999-2024 Gentoo Authors
|
2020-06-19 16:13:38 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
2023-07-08 00:39:42 +03:00
|
|
|
DESCRIPTION="User-friendly program to show you what is using up all your disk space"
|
|
|
|
HOMEPAGE="https://xdiskusage.sourceforge.net/"
|
|
|
|
SRC_URI="https://xdiskusage.sourceforge.net/${P}.tgz"
|
2020-06-19 16:13:38 +03:00
|
|
|
|
2023-07-08 00:39:42 +03:00
|
|
|
LICENSE="GPL-2+"
|
2020-06-19 16:13:38 +03:00
|
|
|
SLOT="0"
|
2021-03-16 14:58:54 +03:00
|
|
|
KEYWORDS="amd64 ~arm64 ~ppc x86"
|
2020-06-19 16:13:38 +03:00
|
|
|
|
2024-12-27 12:14:04 +03:00
|
|
|
RDEPEND="x11-libs/fltk:1="
|
2023-07-08 00:39:42 +03:00
|
|
|
BDEPEND="${RDEPEND}"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
2020-06-19 16:13:38 +03:00
|
|
|
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
|
|
|
|
}
|