diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-26 11:45:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-26 11:45:55 +0000 |
commit | 08782ae7d8812933ad3f932132955ea1c0fb1e52 (patch) | |
tree | 1808993dc06e0c9a473c2e77236ce5d31039466d /boa.mk | |
parent | 057adc1c84e0082cdf88da23a32bf2098680ff4e (diff) | |
download | buildroot-novena-08782ae7d8812933ad3f932132955ea1c0fb1e52.tar.gz buildroot-novena-08782ae7d8812933ad3f932132955ea1c0fb1e52.zip |
Major rework
Diffstat (limited to 'boa.mk')
-rw-r--r-- | boa.mk | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/boa.mk b/boa.mk deleted file mode 100644 index 0b595bd4c..000000000 --- a/boa.mk +++ /dev/null @@ -1,64 +0,0 @@ -# -TARGETS += boa -TARGETS_CLEAN += boa_clean -TARGETS_MRPROPER += boa_mrproper -TARGETS_DISTCLEAN += boa_distclean - -BOA_VERSION=0.94.12pre1 - -# Don't alter below this line unless you (think) you know -# what you are doing! Danger, Danger! - -BOA_URI=http://www.boa.org -BOA_SOURCE=boa-$(BOA_VERSION).tar.gz -BOA_DIR=$(BASE_DIR)/${shell basename $(BOA_SOURCE) .tar.gz} -BOA_WORKDIR=$(BASE_DIR)/boa_workdir - -IMAGE_SIZE += +100 - -$(SOURCE_DIR)/$(BOA_SOURCE): - while [ ! -f $(SOURCE_DIR)/$(BOA_SOURCE) ] ; do \ - wget -P $(SOURCE_DIR) --passive-ftp $(BOA_URI)/$(BOA_SOURCE); \ - done - -$(BOA_DIR)/.unpacked: $(SOURCE_DIR)/$(BOA_SOURCE) - gzip -d -c $(SOURCE_DIR)/$(BOA_SOURCE) | tar -xvf - - touch $(BOA_DIR)/.unpacked - -$(BOA_WORKDIR)/Makefile: $(TARGET_CC) $(BOA_DIR)/.unpacked - rm -f $(BOA_WORKDIR)/Makefile - mkdir -p $(BOA_WORKDIR) - if [ -f $(SOURCE_DIR)/boa-config.site-$(ARCH) ]; then \ - (cd $(BOA_WORKDIR) && CONFIG_SITE=$(SOURCE_DIR)/boa-config.site-$(ARCH) CC=$(TARGET_CC) $(BOA_DIR)/src/configure); \ - else \ - (cd $(BOA_WORKDIR) && CC=$(TARGET_CC) $(BOA_DIR)/src/configure); \ - fi - touch $(BOA_WORKDIR)/.depend - -$(BOA_WORKDIR)/boa $(BOA_WORKDIR)/boa_indexer: $(BOA_WORKDIR)/Makefile - rm -f $@ - make VPATH=$(BOA_DIR)/src/ -C $(BOA_WORKDIR) - -$(BOA_WORKDIR)/.installed: $(BOA_WORKDIR)/boa $(BOA_WORKDIR)/boa_indexer - mkdir -p $(TARGET_DIR)/usr/sbin - cp -f $(BOA_WORKDIR)/boa $(TARGET_DIR)/usr/sbin/boa - mkdir -p $(TARGET_DIR)/usr/lib/boa - cp -f $(BOA_WORKDIR)/boa_indexer $(TARGET_DIR)/usr/lib/boa/boa_indexer - mkdir -p $(TARGET_DIR)/etc/boa - cp -f $(SOURCE_DIR)/boa.conf $(TARGET_DIR)/etc/boa - cp -f $(SOURCE_DIR)/mime.types $(TARGET_DIR)/etc/mime.types - strip --strip-all $(TARGET_DIR)/usr/sbin/boa $(TARGET_DIR)/usr/lib/boa/boa_indexer - touch $(BOA_WORKDIR)/.installed - -boa: $(BOA_WORKDIR)/.installed - -boa_clean: - @if [ -d $(BOA_WORKDIR)/Makefile ] ; then \ - make -C $(BOA_WORKDIR) clean ; \ - fi; - -boa_mrproper: - rm -rf $(BOA_DIR) $(BOA_WORKDIR) - -boa_distclean: boa_mrproper - rm -f $(SOURCE_DIR)/$(BOA_SOURCE) |