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 / portmap / portmap.mk
1 ################################################################################
2 #
3 # portmap
4 #
5 ################################################################################
6
7 PORTMAP_VERSION = 6.0
8 PORTMAP_SOURCE = portmap-$(PORTMAP_VERSION).tgz
9 PORTMAP_SITE = http://neil.brown.name/portmap
10 PORTMAP_LICENSE = BSD-4c (portmap.c) SunRPC License (portmap.c from_local.c)
11 PORTMAP_LICENSE_FILES = portmap.c from_local.c
12 PORTMAP_SBINS = portmap pmap_dump pmap_set
13
14 PORTMAP_FLAGS = NO_TCP_WRAPPER=1 NO_PIE=1 NO_PERROR=1
15 ifeq ($(BR2_USE_MMU),)
16 PORTMAP_FLAGS += NO_FORK=1
17 endif
18
19 define PORTMAP_BUILD_CMDS
20         $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(PORTMAP_FLAGS)
21 endef
22
23 define PORTMAP_INSTALL_TARGET_CMDS
24         for sbin in $(PORTMAP_SBINS); do \
25                 $(INSTALL) -D -m 0755 $(@D)/$$sbin $(TARGET_DIR)/sbin/$$sbin || exit 1; \
26         done
27 endef
28
29 define PORTMAP_INSTALL_INIT_SYSV
30         $(INSTALL) -D -m 0755 package/portmap/S13portmap $(TARGET_DIR)/etc/init.d/S13portmap
31 endef
32
33 $(eval $(generic-package))