]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/bird
core129: Ship updated OpenVPN
[people/pmueller/ipfire-2.x.git] / lfs / bird
index 27f3556f9b6bed1a57eccfec15d0aabbdb9e174e..84487a86161f3e80a6b03241f9c0bc68da142596 100644 (file)
--- a/lfs/bird
+++ b/lfs/bird
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2015  IPFire Team  <info@ipfire.org>                          #
+# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.5.0
+VER        = 2.0.2
 
 THISAPP    = bird-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -32,7 +32,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = bird
-PAK_VER    = 1
+PAK_VER    = 3
 
 DEPS       = ""
 
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 330bde6372afa106abfe5a9737e471c1
+$(DL_FILE)_MD5 = de17645b045fa13912409aea59420132
 
 install : $(TARGET)
 
@@ -77,6 +77,7 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
+       $(UPDATE_AUTOMAKE)
        cd $(DIR_APP) && \
                ./configure \
                        --prefix=/usr \
@@ -84,6 +85,14 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
                        --localstatedir=/var
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
+
+       # Install backup include
+       install -v -m 644 $(DIR_SRC)/config/backup/includes/bird \
+                /var/ipfire/backup/addons/includes/bird
+
+       # Install initscript
+       $(call INSTALL_INITSCRIPT,bird)
+
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)