3fdf0bffb8
We have been passing -q to ./configure when using 'make -s' for packages using Makefile.autotools.in for some time. Do the same for packages using autotools, but not using the Makefile.autotools.in infrastructure, taking care to not do it for packages with hand written configure scripts. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
97 lines
2.8 KiB
Makefile
97 lines
2.8 KiB
Makefile
#############################################################
|
|
#
|
|
# pppd
|
|
#
|
|
#############################################################
|
|
PPPD_VERSION:=2.4.4
|
|
PPPD_SOURCE:=ppp-$(PPPD_VERSION).tar.gz
|
|
PPPD_SITE:=ftp://ftp.samba.org/pub/ppp
|
|
PPPD_DIR:=$(BUILD_DIR)/ppp-$(PPPD_VERSION)
|
|
PPPD_CAT:=$(ZCAT)
|
|
PPPD_BINARY:=pppd/pppd
|
|
PPPD_TARGET_BINARY:=usr/sbin/pppd
|
|
|
|
|
|
$(DL_DIR)/$(PPPD_SOURCE):
|
|
$(call DOWNLOAD,$(PPPD_SITE),$(PPPD_SOURCE))
|
|
|
|
pppd-source: $(DL_DIR)/$(PPPD_SOURCE)
|
|
|
|
PPPD_OPTIONS_$(BR2_PACKAGE_PPPD_FILTER) += FILTER=y
|
|
|
|
$(PPPD_DIR)/.unpacked: $(DL_DIR)/$(PPPD_SOURCE)
|
|
$(PPPD_CAT) $(DL_DIR)/$(PPPD_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
toolchain/patch-kernel.sh $(PPPD_DIR) package/pppd/ pppd\*.patch
|
|
$(SED) 's/ -DIPX_CHANGE -DHAVE_MMAP//' $(PPPD_DIR)/pppd/Makefile.linux
|
|
$(SED) 's/FILTER=y/#FILTER=y/' $(PPPD_DIR)/pppd/Makefile.linux
|
|
$(SED) 's,(INSTALL) -s,(INSTALL),' $(PPPD_DIR)/*/Makefile.linux
|
|
$(SED) 's,(INSTALL) -s,(INSTALL),' $(PPPD_DIR)/pppd/plugins/*/Makefile.linux
|
|
$(SED) 's/ -o root//' $(PPPD_DIR)/*/Makefile.linux
|
|
$(SED) 's/ -g daemon//' $(PPPD_DIR)/*/Makefile.linux
|
|
$(SED) 's/ifneq ($$(wildcard \/usr\/include\/pcap-bpf.h),)/ifdef FILTER/' $(PPPD_DIR)/*/Makefile.linux
|
|
touch $@
|
|
|
|
$(PPPD_DIR)/.configured: $(PPPD_DIR)/.unpacked
|
|
(cd $(PPPD_DIR); rm -rf config.cache; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(TARGET_CONFIGURE_ARGS) \
|
|
./configure $(QUIET) \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--bindir=/usr/bin \
|
|
--sbindir=/usr/sbin \
|
|
--libdir=/lib \
|
|
--libexecdir=/usr/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/man \
|
|
--infodir=/usr/info \
|
|
$(DISABLE_NLS) \
|
|
)
|
|
touch $@
|
|
|
|
$(PPPD_DIR)/$(PPPD_BINARY): $(PPPD_DIR)/.configured
|
|
$(MAKE) CC=$(TARGET_CC) COPTS="$(TARGET_CFLAGS)" -C $(PPPD_DIR) $(PPPD_OPTIONS_y)
|
|
|
|
$(TARGET_DIR)/$(PPPD_TARGET_BINARY): $(PPPD_DIR)/$(PPPD_BINARY)
|
|
$(MAKE1) DESTDIR=$(TARGET_DIR)/usr CC=$(TARGET_CC) -C $(PPPD_DIR) install $(PPPD_OPTIONS_y)
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
rm -rf $(TARGET_DIR)/usr/share/locale
|
|
endif
|
|
ifneq ($(BR2_HAVE_MANPAGES),y)
|
|
rm -rf $(TARGET_DIR)/usr/share/man
|
|
endif
|
|
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
|
rm -rf $(TARGET_DIR)/usr/info
|
|
endif
|
|
rm -rf $(TARGET_DIR)/usr/share/doc
|
|
rm -rf $(TARGET_DIR)/usr/include/pppd
|
|
|
|
pppd: $(TARGET_DIR)/$(PPPD_TARGET_BINARY)
|
|
|
|
pppd-clean:
|
|
rm -f $(TARGET_DIR)/usr/sbin/pppd
|
|
rm -f $(TARGET_DIR)/usr/sbin/chat
|
|
rm -f $(TARGET_DIR)/usr/sbin/pppstatus
|
|
rm -f $(TARGET_DIR)/usr/sbin/pppdump
|
|
rm -rf $(TARGET_DIR)/etc/ppp
|
|
rm -rf $(TARGET_DIR)/usr/include/pppd
|
|
-$(MAKE) -C $(PPPD_DIR) clean
|
|
|
|
pppd-dirclean:
|
|
rm -rf $(PPPD_DIR)
|
|
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(BR2_PACKAGE_PPPD),y)
|
|
TARGETS+=pppd
|
|
endif
|