]> git.ipfire.org Git - ipfire-3.x.git/blame - lfs/quagga
Rootfile update.
[ipfire-3.x.git] / lfs / quagga
CommitLineData
acb73b33
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27PKG_NAME = quagga
28VER = 0.99.11
29PKG_VER = 0
30
31THISAPP = $(PKG_NAME)-$(VER)
32DL_FILE = $(THISAPP).tar.gz
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34
35OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
36
37MAINTAINER =
38GROUP = Networking/Routing
39EXTRA = no
40DEBUG = no
41DEPS = pam
42
43URL = http://www.quagga.net/
44LICENSE = GPLv2+
45SHORT_DESC = Quagga is a rounting daemon.
46
47define LONG_DESC
48 Quagga is a free software that manages TCP/IP based routing \
49 protocol. It takes multi-server and multi-thread approach to resolve \
50 the current complexity of the Internet. \
51 Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng.
52endef
53
54###############################################################################
55# Top-level Rules
56###############################################################################
57
58objects = $(DL_FILE)
59
60download: $(objects)
61
62info:
63 $(DO_PKG_INFO)
64
65install: $(OBJECT)
66
67package:
68 @$(DO_PACKAGE)
69
70$(objects):
71 @$(LOAD)
72
73###############################################################################
74# Installation Details
75###############################################################################
76
77$(OBJECT): $(objects)
78 @$(PREBUILD)
79 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
80 cd $(DIR_APP) && \
81 ./configure \
82 $(CONFIGURE_ARCH) \
83 --prefix=/usr \
84 --sysconfdir=/etc \
85 --disable-static \
86 --enable-netlink \
87 --with-libpam
88 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
89 cd $(DIR_APP) && make install
90 @rm -rf $(DIR_APP)
91 @$(POSTBUILD)