kumquat-buildroot/package/ibrdtn/ibrdtn.mk
Thomas Petazzoni f56de721c4 ibrdtn: fix bogus dependency on zlib
Due to a copy/paste mistake, zlib was being added to
<pkg>_DEPENDENCIES even when not enabled in the configuration. This
commit fixes that.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-08-29 20:42:31 +02:00

30 lines
773 B
Makefile

################################################################################
#
# ibrdtn
#
################################################################################
IBRDTN_VERSION = 1.0.1
IBRDTN_SOURCE = ibrdtn-$(IBRDTN_VERSION).tar.gz
IBRDTN_SITE = https://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases/
IBRDTN_INSTALL_STAGING = YES
IBRDTN_LICENSE = Apache-2.0
IBRDTN_LICENSE_FILES = COPYING
IBRDTN_DEPENDENCIES = ibrcommon host-pkgconf
ifeq ($(BR2_PACKAGE_ZLIB),y)
IBRDTN_CONF_OPTS += --with-compression
IBRDTN_DEPENDENCIES += zlib
else
IBRDTN_CONF_OPTS += --without-compression
endif
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
IBRDTN_CONF_OPTS += --with-glib
IBRDTN_DEPENDENCIES += libglib2
else
IBRDTN_CONF_OPTS += --without-glib
endif
$(eval $(autotools-package))