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.
gentoo-overlay/sys-apps/s390-tools/s390-tools-1.36.1.ebuild

52 lines
1.2 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit toolchain-funcs udev
DESCRIPTION="User space utilities for the zSeries (s390) Linux kernel and device drivers"
HOMEPAGE="http://www.ibm.com/developerworks/linux/linux390/s390-tools.html"
SRC_URI="http://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~s390"
IUSE="fuse ncurses pfm snmp zlib"
RDEPEND="fuse? ( sys-fs/fuse )
ncurses? ( sys-libs/ncurses:0= )
pfm? ( app-misc/pfm )
snmp? ( net-analyzer/net-snmp )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
dev-util/indent
app-admin/genromfs"
src_configure() {
export MAKEOPTS+=" V=1"
export HAVE_DRACUT=0
export HAVE_FUSE=$(usex fuse 1 0)
export HAVE_NCURSES=$(usex ncurses 1 0)
export HAVE_SNMP=$(usex snmp 1 0)
export HAVE_PFM=$(usex pfm 1 0)
export HAVE_ZLIB=$(usex zlib 1 0)
tc-export AR BUILD_CC CC CXX LD NM OBJCOPY
}
src_compile() {
emake \
AR="${AR}" \
HOSTCC="${BUILD_CC}" \
CC="${CC}" LINK="${CC}" \
CXX="${CXX}" LINKXX="${CXX}" \
LD="${LD}" \
NM="${NM}" \
OBJCOPY="${OBJCOPY}"
}
src_install() {
default
udev_dorules etc/udev/rules.d/*.rules
}