mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
whois: new package
[Peter: tweak comment, pass _MAKE_OPT to install as suggested by Arnout] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
ee6e435f1b
commit
2001bf94bf
@ -1046,6 +1046,7 @@ endif
|
|||||||
source "package/vtun/Config.in"
|
source "package/vtun/Config.in"
|
||||||
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||||
source "package/wget/Config.in"
|
source "package/wget/Config.in"
|
||||||
|
source "package/whois/Config.in"
|
||||||
endif
|
endif
|
||||||
source "package/wireless-regdb/Config.in"
|
source "package/wireless-regdb/Config.in"
|
||||||
source "package/wireless_tools/Config.in"
|
source "package/wireless_tools/Config.in"
|
||||||
|
7
package/whois/Config.in
Normal file
7
package/whois/Config.in
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
config BR2_PACKAGE_WHOIS
|
||||||
|
bool "whois"
|
||||||
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
||||||
|
help
|
||||||
|
Improved whois client.
|
||||||
|
|
||||||
|
http://www.linux.it/~md/software/
|
41
package/whois/whois.mk
Normal file
41
package/whois/whois.mk
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# whois
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
WHOIS_VERSION = 5.1.3
|
||||||
|
WHOIS_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/w/whois
|
||||||
|
WHOIS_SOURCE = whois_$(WHOIS_VERSION).tar.xz
|
||||||
|
# take precedence over busybox implementation
|
||||||
|
WHOIS_DEPENDENCIES = host-gettext $(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
||||||
|
WHOIS_MAKE_ENV = $(TARGET_MAKE_ENV)
|
||||||
|
WHOIS_MAKE_OPT = CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)"
|
||||||
|
WHOIS_LICENSE = GPLv2+
|
||||||
|
WHOIS_LICENSE_FILES = COPYING
|
||||||
|
|
||||||
|
ifeq ($(BR2_NEEDS_GETTEXT),y)
|
||||||
|
WHOIS_DEPENDENCIES += gettext
|
||||||
|
WHOIS_MAKE_OPT += LIBS="-lintl"
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
||||||
|
WHOIS_DEPENDENCIES += libiconv
|
||||||
|
WHOIS_MAKE_ENV += HAVE_ICONV=1
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
||||||
|
WHOIS_DEPENDENCIES += libidn
|
||||||
|
WHOIS_MAKE_ENV += HAVE_LIBIDN=1
|
||||||
|
endif
|
||||||
|
|
||||||
|
define WHOIS_BUILD_CMDS
|
||||||
|
$(WHOIS_MAKE_ENV) $(MAKE) $(WHOIS_MAKE_OPT) -C $(@D)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define WHOIS_INSTALL_TARGET_CMDS
|
||||||
|
$(WHOIS_MAKE_ENV) $(MAKE) $(WHOIS_MAKE_OPT) \
|
||||||
|
BASEDIR="$(TARGET_DIR)" install -C $(@D)
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(generic-package))
|
Loading…
x
Reference in New Issue
Block a user