diff options
Diffstat (limited to 'sys-block/open-isns/open-isns-0.97.ebuild')
-rw-r--r-- | sys-block/open-isns/open-isns-0.97.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sys-block/open-isns/open-isns-0.97.ebuild b/sys-block/open-isns/open-isns-0.97.ebuild new file mode 100644 index 000000000000..fd746860ac16 --- /dev/null +++ b/sys-block/open-isns/open-isns-0.97.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit flag-o-matic + +DESCRIPTION="iSNS server and client for Linux" +HOMEPAGE="https://github.com/open-iscsi/open-isns" +SRC_URI="http://github.com/open-iscsi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug slp ssl static" + +DEPEND=" + ssl? ( dev-libs/openssl:= ) + slp? ( net-libs/openslp )" +RDEPEND="${DEPEND}" + +src_configure() { + use debug && append-cppflags -DDEBUG_TCP -DDEBUG_SCSI + append-lfs-flags + econf $(use_with slp) \ + $(use_with ssl security) \ + $(use_enable !static shared) +} + +src_install() { + default + emake DESTDIR="${D}" install_hdrs + emake DESTDIR="${D}" install_lib +} |