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-block/tgt/tgt-1.0.22.ebuild

61 lines
1.5 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/tgt/tgt-1.0.22.ebuild,v 1.3 2012/02/04 16:54:30 alexxy Exp $
EAPI=4
inherit flag-o-matic linux-info
MY_TREE="3e216c9"
DESCRIPTION="Linux SCSI target framework (tgt)"
HOMEPAGE="http://stgt.sourceforge.net"
SRC_URI="https://github.com/fujita/tgt/tarball/v${PV} -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ibmvio infiniband fcp fcoe"
DEPEND="dev-perl/config-general
dev-libs/libxslt
infiniband? (
sys-infiniband/libibverbs
sys-infiniband/librdmacm
)"
RDEPEND="${DEPEND}
sys-apps/sg3_utils"
S="${WORKDIR}"/fujita-tgt-"${MY_TREE}"
pkg_setup() {
CONFIG_CHECK="~SCSI_TGT"
WARNING_SCSI_TGT="Your kernel needs CONFIG_SCSI_TGT"
linux-info_pkg_setup
}
src_prepare() {
sed -i -e 's:\($(CC)\):\1 $(LDFLAGS):' usr/Makefile || die "sed failed"
# make sure xml docs are generated before trying to install them
sed -i -e "s@install: @install: all @g" doc/Makefile || die
}
src_compile() {
local myconf
use ibmvio && myconf="${myconf} IBMVIO=1"
use infiniband && myconf="${myconf} ISCSI_RDMA=1"
use fcp && myconf="${myconf} FCP=1"
use fcoe && myconf="${myconf} FCOE=1"
emake -C usr/ KERNELSRC="${KERNEL_DIR}" ISCSI=1 ${myconf}
}
src_install() {
emake install-programs install-scripts install-doc DESTDIR="${D}" \
docdir=/usr/share/doc/${PF}
doinitd "${FILESDIR}/tgtd"
dodir /etc/tgt
keepdir /etc/tgt
}