This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via badfa52e391b213ff46e7ac5d5df8bdcbf1068c1 (commit) via 49b5bc27043cbb7db13196521f9eb68c49e7b8cd (commit) from 436bb505f2ee4e9e341eb5ab687307cb0801b3d8 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit badfa52e391b213ff46e7ac5d5df8bdcbf1068c1 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Jun 25 13:12:14 2011 +0200
bird: New package.
commit 49b5bc27043cbb7db13196521f9eb68c49e7b8cd Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Jun 25 13:11:19 2011 +0200
coreutils: Remove duplicate of su.
-----------------------------------------------------------------------
Summary of changes: pkgs/{etherwake/etherwake.nm => bird/bird.nm} | 38 +++++++++++++------ .../radvd.service => bird/systemd/bird.service} | 9 ++--- .../radvd.service => bird/systemd/bird6.service} | 9 ++--- pkgs/coreutils/coreutils.nm | 4 ++- 4 files changed, 37 insertions(+), 23 deletions(-) copy pkgs/{etherwake/etherwake.nm => bird/bird.nm} (71%) copy pkgs/{radvd/systemd/radvd.service => bird/systemd/bird.service} (51%) copy pkgs/{radvd/systemd/radvd.service => bird/systemd/bird6.service} (51%)
Difference in files: diff --git a/pkgs/bird/bird.nm b/pkgs/bird/bird.nm new file mode 100644 index 0000000..b8ecdb5 --- /dev/null +++ b/pkgs/bird/bird.nm @@ -0,0 +1,70 @@ +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt # +# # +# 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 # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include $(PKGROOT)/Include + +PKG_NAME = bird +PKG_VER = 1.3.1 +PKG_REL = 1 + +PKG_MAINTAINER = +PKG_GROUPS = Networking/Routing +PKG_URL = http://bird.network.cz/ +PKG_LICENSE = GPLv2+ +PKG_SUMMARY = BIRD Internet Routing Daemon. + +PKG_BUILD_DEPS+= bison flex ncurses-devel readline-devel + +define PKG_DESCRIPTION + BIRD is dynamic routing daemon supporting IPv4 and IPv6 versions of routing + protocols BGP, RIP and OSPF. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + +CONFIGURE_OPTIONS += \ + --sysconfdir=/etc \ + --localstatedir=/var + +define STAGE_PREPARE_CMDS + -mkdir -pv $(DIR_APP)/ipv6 + cd $(DIR_APP) && tar c --exclude ipv6 . | tar x -C ipv6 +endef + +define STAGE_BUILD + cd $(DIR_APP) && \ + ./configure $(CONFIGURE_OPTIONS) + cd $(DIR_APP) && make $(PARALLELISMFLAGS) + + cd $(DIR_APP)/ipv6 && \ + ./configure $(CONFIGURE_OPTIONS) --enable-ipv6 + cd $(DIR_APP)/ipv6 && make $(PARALLELISMFLAGS) +endef + +define STAGE_INSTALL + cd $(DIR_APP) && make install DESTDIR=$(BUILDROOT) + cd $(DIR_APP)/ipv6 && make install DESTDIR=$(BUILDROOT) + + rm -rfv $(BUILDROOT)/var +endef diff --git a/pkgs/bird/systemd/bird.service b/pkgs/bird/systemd/bird.service new file mode 100644 index 0000000..438d6af --- /dev/null +++ b/pkgs/bird/systemd/bird.service @@ -0,0 +1,13 @@ +[Unit] +Description=BIRD Internet Routing Daemon +Requires=network.target +After=network.target +After=syslog.target + +[Service] +Type=forking +ExecStart=/usr/sbin/bird +ExecReload=/bin/kill -HUP $MAINPID + +[Install] +WantedBy=multi-user.target diff --git a/pkgs/bird/systemd/bird6.service b/pkgs/bird/systemd/bird6.service new file mode 100644 index 0000000..0d8e9b5 --- /dev/null +++ b/pkgs/bird/systemd/bird6.service @@ -0,0 +1,13 @@ +[Unit] +Description=BIRD Internet Routing Daemon +Requires=network.target +After=network.target +After=syslog.target + +[Service] +Type=forking +ExecStart=/usr/sbin/bird6 +ExecReload=/bin/kill -HUP $MAINPID + +[Install] +WantedBy=multi-user.target diff --git a/pkgs/coreutils/coreutils.nm b/pkgs/coreutils/coreutils.nm index 6e1da0a..be41e0c 100644 --- a/pkgs/coreutils/coreutils.nm +++ b/pkgs/coreutils/coreutils.nm @@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = coreutils PKG_VER = 8.12 -PKG_REL = 1 +PKG_REL = 2
PKG_MAINTAINER = PKG_GROUPS = Base System/Base @@ -70,6 +70,8 @@ define STAGE_INSTALL_CMDS mv -v $(BUILDROOT)/usr/bin/chroot $(BUILDROOT)/usr/sbin mv -v $(BUILDROOT)/usr/bin/{head,sleep,nice} $(BUILDROOT)/bin
+ # Reinstall su in /bin + -rm -rfv $(BUILDROOT)/usr/bin/su cd $(DIR_APP) && install -m 4755 src/su $(BUILDROOT)/bin
# Dump /etc/DIR_COLORS
hooks/post-receive -- IPFire 3.x development tree