You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
700 B
39 lines
700 B
5 years ago
|
# Copyright 1999-2019 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
inherit toolchain-funcs
|
||
|
|
||
|
DESCRIPTION="Disk Information Utility"
|
||
|
HOMEPAGE="https://gentoo.com/di/"
|
||
|
SRC_URI="https://gentoo.com/di/${P}.tar.gz"
|
||
|
|
||
|
LICENSE="ZLIB"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
||
|
IUSE="nls"
|
||
|
|
||
|
RESTRICT="test" #405205, #405471
|
||
|
|
||
|
BDEPEND="nls? ( sys-devel/gettext )"
|
||
|
|
||
|
PATCHES=(
|
||
|
"${FILESDIR}"/${PN}-4.33-build.patch
|
||
|
)
|
||
|
|
||
|
src_configure() {
|
||
|
emake checkbuild
|
||
|
emake -C C config.h
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
emake prefix=/usr CC="$(tc-getCC)" NLS=$(usex nls T F)
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake install prefix="${D}/usr"
|
||
|
# default symlink is broken
|
||
|
dosym di /usr/bin/mi
|
||
|
dodoc README
|
||
|
}
|