Merge pull request #8481 from BKPepe/yarl
[feed/packages.git] / net / rpcbind / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=rpcbind
4 PKG_VERSION:=1.2.5
5 PKG_RELEASE:=2
6
7 PKG_SOURCE_URL:=@SF/rpcbind
8 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
9 PKG_HASH:=2ce360683963b35c19c43f0ee2c7f18aa5b81ef41c3fdbd15ffcb00b8bffda7a
10
11 PKG_MAINTAINER:=Andy Walsh <andy.walsh44+github@gmail.com>
12 PKG_LICENSE:=BSD-3-Clause
13 PKG_CPE_ID:=cpe:/a:rpcbind_project:rpcbind
14
15 PKG_FIXUP:=autoreconf
16 PKG_REMOVE_FILES:=autogen.sh aclocal.m4
17 PKG_INSTALL:=1
18
19 PKG_CONFIG_DEPENDS:= \
20 CONFIG_RPCBIND_LIBWRAP
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/rpcbind
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libtirpc +RPCBIND_LIBWRAP:libwrap
28 TITLE:=Universal addresses to RPC mapper
29 URL:=http://rpcbind.sourceforge.net/
30 USERID:=rpc=65533:rpc=65533
31 endef
32
33 define Package/rpcbind/description
34 The rpcbind utility is a server that converts RPC program numbers into universal addresses.
35 It must be running on the host to be able to make RPC calls on a server on that machine.
36
37 Rpcbind replaces portmap for NFS v2/v3. It has more features, like ipv6 support.
38 Note: Nfs4 only configurations can run without it.
39 endef
40
41 define Package/rpcbind/config
42 if PACKAGE_rpcbind
43 config RPCBIND_LIBWRAP
44 bool "Enable libwrap (TCP wrappers) support."
45 default y
46 endif
47 endef
48
49 CONFIGURE_ARGS += \
50 --with-rpcuser=rpc \
51 --without-systemdsystemunitdir \
52 --enable-warmstarts
53
54 ifeq ($(CONFIG_RPCBIND_LIBWRAP),y)
55 CONFIGURE_ARGS += --enable-libwrap
56 else
57 CONFIGURE_ARGS += --disable-libwrap
58 endif
59
60 define Package/rpcbind/install
61 $(INSTALL_DIR) $(1)/usr/bin
62 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rpcinfo $(1)/usr/bin/
63 $(INSTALL_DIR) $(1)/usr/sbin
64 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/rpcbind $(1)/usr/sbin/
65 $(INSTALL_DIR) $(1)/etc/init.d
66 $(INSTALL_BIN) ./files/rpcbind.init $(1)/etc/init.d/rpcbind
67 endef
68
69 $(eval $(call BuildPackage,rpcbind))