Blame view

buildroot/buildroot-2016.08.1/package/ibrdtnd/ibrdtnd.mk 1.25 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  ################################################################################
  #
  # ibrdtnd
  #
  ################################################################################
  
  IBRDTND_VERSION = 1.0.1
  IBRDTND_SOURCE = ibrdtnd-$(IBRDTND_VERSION).tar.gz
  IBRDTND_SITE = https://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
  IBRDTND_LICENSE = Apache-2.0
  IBRDTND_LICENSE_FILES = COPYING
  IBRDTND_DEPENDENCIES = ibrdtn ibrcommon host-pkgconf
  
  # Disable features that don't have the necessary dependencies in
  # Buildroot
  IBRDTND_CONF_OPTS = \
  	--disable-dtndht \
  	--without-wifip2p \
  	--without-vmime
  
  # don't build documentation
  IBRDTND_CONF_ENV = PDFLATEX='no'
  
  ifeq ($(BR2_PACKAGE_LIBDAEMON),y)
  IBRDTND_CONF_OPTS += --enable-libdaemon
  IBRDTND_DEPENDENCIES += libdaemon
  else
  IBRDTND_CONF_OPTS += --disable-libdaemon
  endif
  
  ifeq ($(BR2_PACKAGE_LIBCURL),y)
  IBRDTND_CONF_OPTS += --with-curl
  IBRDTND_DEPENDENCIES += libcurl
  else
  IBRDTND_CONF_OPTS += --without-curl
  endif
  
  ifeq ($(BR2_PACKAGE_SQLITE),y)
  IBRDTND_CONF_OPTS += --with-sqlite
  IBRDTND_DEPENDENCIES += sqlite
  else
  IBRDTND_CONF_OPTS += --without-sqlite
  endif
  
  ifeq ($(BR2_PACKAGE_OPENSSL),y)
  IBRDTND_CONF_OPTS += --with-tls
  IBRDTND_DEPENDENCIES += openssl
  else
  IBRDTND_CONF_OPTS += --without-tls
  endif
  
  $(eval $(autotools-package))