diff options
author | 2014-01-03 19:23:53 +0000 | |
---|---|---|
committer | 2014-01-03 19:23:53 +0000 | |
commit | c32746ffd3b4dd0d81d9028f02b2e96cc2bc2909 (patch) | |
tree | ceaf2fc2a607c981163b395ebd0714e708c1d9f9 /sys-block/nbd | |
parent | Version bump. New version installs the systemd unit file by default. (diff) | |
download | gentoo-2-c32746ffd3b4dd0d81d9028f02b2e96cc2bc2909.tar.gz gentoo-2-c32746ffd3b4dd0d81d9028f02b2e96cc2bc2909.tar.bz2 gentoo-2-c32746ffd3b4dd0d81d9028f02b2e96cc2bc2909.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'sys-block/nbd')
-rw-r--r-- | sys-block/nbd/ChangeLog | 9 | ||||
-rw-r--r-- | sys-block/nbd/nbd-3.6.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/sys-block/nbd/ChangeLog b/sys-block/nbd/ChangeLog index 61557e2b3a86..c9f8399b6fb8 100644 --- a/sys-block/nbd/ChangeLog +++ b/sys-block/nbd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-block/nbd -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/nbd/ChangeLog,v 1.88 2013/12/07 19:51:27 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/nbd/ChangeLog,v 1.89 2014/01/03 19:23:53 vapier Exp $ + +*nbd-3.6 (03 Jan 2014) + + 03 Jan 2014; Mike Frysinger <vapier@gentoo.org> +nbd-3.6.ebuild: + Version bump. 07 Dec 2013; Agostino Sarubbo <ago@gentoo.org> nbd-3.5.ebuild: Stable for arm, wrt bug #493010 diff --git a/sys-block/nbd/nbd-3.6.ebuild b/sys-block/nbd/nbd-3.6.ebuild new file mode 100644 index 000000000000..3c49bc62bd26 --- /dev/null +++ b/sys-block/nbd/nbd-3.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/nbd/nbd-3.6.ebuild,v 1.1 2014/01/03 19:23:53 vapier Exp $ + +EAPI="4" + +inherit toolchain-funcs + +DESCRIPTION="Userland client/server for kernel network block device" +HOMEPAGE="http://nbd.sourceforge.net/" +SRC_URI="mirror://sourceforge/nbd/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug zlib" + +RDEPEND=">=dev-libs/glib-2.0 + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf \ + --enable-lfs \ + --enable-syslog \ + $(use_enable debug) +} + +src_compile() { + default + use zlib && emake -C gznbd CC="$(tc-getCC)" +} + +src_install() { + default + use zlib && dobin gznbd/gznbd +} |