The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / xl2tp / xl2tp.mk
1 ################################################################################
2 #
3 # xl2tp
4 #
5 ################################################################################
6
7 XL2TP_VERSION = v1.3.6
8 XL2TP_SITE = $(call github,xelerance,xl2tpd,$(XL2TP_VERSION))
9 XL2TP_DEPENDENCIES = libpcap openssl
10 XL2TP_LICENSE = GPLv2
11 XL2TP_LICENSE_FILES = LICENSE
12
13 ifeq ($(BR2_STATIC_LIBS),y)
14 XL2TP_LDLIBS = LDLIBS="$(shell $(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs)"
15 endif
16
17 define XL2TP_BUILD_CMDS
18         $(SED) 's/ -O2 //' $(@D)/Makefile
19         $(TARGET_CONFIGURE_OPTS) $(MAKE) $(XL2TP_LDLIBS) -C $(@D)
20 endef
21
22 define XL2TP_INSTALL_TARGET_CMDS
23         $(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr -C $(@D) install
24 endef
25
26 $(eval $(generic-package))