Commit f2057583 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

nbd: bump version and depend on glib2

Patch by Thiago A. Correa.
parent a28e842f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_NBD
	bool "nbd"
	default n
	select BR2_PACKAGE_LIBGLIB2
	help
	  NBD is a set of utilities to configure network block devices,
	  allowing access to remote block devices over TCP/IP network.
	  Notice: This package only provides the NBD client.

	  Depends on glib.

	  http://nbd.sf.net/
+4 −4
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
#############################################################

NBD_VERSION=2.8.6
NBD_VERSION=2.9.11
NBD_SOURCE=nbd-$(NBD_VERSION).tar.bz2
NBD_CAT:=$(BZCAT)
NBD_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/nbd/
@@ -15,7 +15,7 @@ $(DL_DIR)/$(NBD_SOURCE):

$(NBD_DIR)/.unpacked: $(DL_DIR)/$(NBD_SOURCE)
	$(NBD_CAT) $(DL_DIR)/$(NBD_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	touch $(NBD_DIR)/.unpacked
	touch $@

$(NBD_DIR)/.configured: $(NBD_DIR)/.unpacked
	(cd $(NBD_DIR); rm -rf config.cache; \
@@ -28,7 +28,7 @@ $(NBD_DIR)/.configured: $(NBD_DIR)/.unpacked
		--build=$(GNU_HOST_NAME) \
		--prefix=/usr \
	)
	touch $(NBD_DIR)/.configured
	touch $@

$(NBD_DIR)/nbd-client: $(NBD_DIR)/.configured
	$(MAKE) -C $(NBD_DIR) nbd-client
@@ -37,7 +37,7 @@ $(TARGET_DIR)/sbin/nbd-client: $(NBD_DIR)/nbd-client
	cp $< $@
	$(STRIPCMD) $@

nbd: uclibc $(TARGET_DIR)/sbin/nbd-client
nbd: uclibc libglib2 $(TARGET_DIR)/sbin/nbd-client

nbd-source: $(DL_DIR)/$(NBD_SOURCE)