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 2dd07882574871bf18e3ef6396a81f829fb69aae (commit) via 006f2f198004f5c425666d78aa8ff74e424cf0aa (commit) via d263d588d15239b28b59d81101ae3465f294ad1c (commit) via a2cfe8fcacc1fc76c224402c47fde5eb47adf346 (commit) via d5f8ec056202704194370ec3c60683251a716e76 (commit) via 3812d68a016aa2676ad08c273479d90aacf71164 (commit) via 15ad75e00fe347f4b620bffd10563ec0290f7a75 (commit) from 249065db2ce9b575a28019c8daa0e00cb8f29dad (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 2dd07882574871bf18e3ef6396a81f829fb69aae Merge: 006f2f1 a2cfe8f Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Apr 2 14:08:40 2011 +0200
Merge remote-tracking branch 'maniacikarus/proxy'
commit 006f2f198004f5c425666d78aa8ff74e424cf0aa Merge: d263d58 3812d68 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Apr 2 14:07:26 2011 +0200
Merge remote-tracking branch 'maniacikarus/clamav'
commit d263d588d15239b28b59d81101ae3465f294ad1c Merge: 15ad75e d5f8ec0 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat Apr 2 14:05:46 2011 +0200
Merge remote-tracking branch 'robertm/cronie'
commit a2cfe8fcacc1fc76c224402c47fde5eb47adf346 Author: Christian Schmidt maniacikarus@ipfire.org Date: Sat Apr 2 13:47:22 2011 +0200
squidGuard: Added patched squidGuard 1.4.
commit d5f8ec056202704194370ec3c60683251a716e76 Author: Robert Möker robertm@ipfire.org Date: Sat Apr 2 12:50:29 2011 +0200
cronie: New package.
commit 3812d68a016aa2676ad08c273479d90aacf71164 Author: Christian Schmidt maniacikarus@ipfire.org Date: Sat Apr 2 11:52:58 2011 +0200
clamav: Added clamav package version 0.97.
commit 15ad75e00fe347f4b620bffd10563ec0290f7a75 Author: Robert Möker robertm@ipfire.org Date: Sat Apr 2 11:38:41 2011 +0200
iftop: New package.
-----------------------------------------------------------------------
Summary of changes: pkgs/{grub/grub.nm => clamav/clamav.nm} | 73 ++++++++++---------- pkgs/{nano/nano.nm => cronie/cronie.nm} | 29 +++----- pkgs/{htop/htop.nm => iftop/iftop.nm} | 20 +++--- .../{polkit/polkit.nm => squidGuard/squidGuard.nm} | 43 +++++++----- 4 files changed, 80 insertions(+), 85 deletions(-) copy pkgs/{grub/grub.nm => clamav/clamav.nm} (56%) copy pkgs/{nano/nano.nm => cronie/cronie.nm} (76%) copy pkgs/{htop/htop.nm => iftop/iftop.nm} (84%) copy pkgs/{polkit/polkit.nm => squidGuard/squidGuard.nm} (68%)
Difference in files: diff --git a/pkgs/clamav/clamav.nm b/pkgs/clamav/clamav.nm new file mode 100644 index 0000000..6fa456f --- /dev/null +++ b/pkgs/clamav/clamav.nm @@ -0,0 +1,81 @@ +############################################################################### +# # +# 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 = clamav +PKG_VER = 0.97 +PKG_REL = 1 + +PKG_MAINTAINER = +PKG_GROUPS = System Environment/Daemons +PKG_URL = http://www.clamav.net +PKG_LICENSE = GPLv2 +PKG_SUMMARY = A GPL virus scanner + +PKG_BUILD_DEPS+= zlib-devel bzip2-devel gmp-devel curl-devel ncurses-devel shadow + +define PKG_DESCRIPTION + ClamAV is an open source (GPL) antivirus engine designed for \ + detecting Trojans, viruses, malware and other malicious threats. \ + It is the de facto standard for mail gateway scanning. It \ + provides a high performance mutli-threaded scanning daemon, \ + command line utilities for on demand file scanning, and an \ + intelligent tool for automatic signature updates. The core ClamAV \ + library provides numerous file format detection mechanisms, file \ + unpacking support, archive support, and multiple signature \ + languages for detecting threats. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + +PKG_PACKAGES += $(PKG_NAME)-devel $(PKG_NAME)-libs + +CFLAGS += -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DLDAP_DEPRECATED + +CONFIGURE_ENVIRONMENT += have_cv_ipv6=yes + +CONFIGURE_OPTIONS += \ + --sysconfdir=/etc \ + --disable-static \ + --disable-rpath \ + --disable-silent-rules \ + --with-dbdir=/var/lib/clamav \ + --enable-clamdtop \ + --with-user=clamupdate \ + --with-group=clamupdate + +define STAGE_PREPARE_CMDS + groupadd -g 497 -r clamupdate + useradd -u 497 -r -s /sbin/nologin -d /var/lib/clamav -M \ + -c 'Clamav database update user' -g clamupdate clamupdate + + groupadd -g 496 -r clamscan + useradd -u 496 -r -s /sbin/nologin -d / -M \ + -g clamscan clamscan +endef + +define STAGE_INSTALL + cd $(DIR_APP) && make install DESTDIR=$(BUILDROOT) +endef diff --git a/pkgs/cronie/cronie.nm b/pkgs/cronie/cronie.nm new file mode 100644 index 0000000..f6feb10 --- /dev/null +++ b/pkgs/cronie/cronie.nm @@ -0,0 +1,48 @@ +############################################################################### +# # +# 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 = cronie +PKG_VER = 1.4.7 +PKG_REL = 1 + +PKG_MAINTAINER = +PKG_GROUPS = System/Environment/Base +PKG_URL = https://fedorahosted.org/releases/c/r/cronie/ +PKG_LICENSE = MIT and BSD and ISC and GPLv2 +PKG_SUMMARY = Cron daemon for executing programs at set times + +PKG_BUILD_DEPS+= audit-devel libselinux-devel + +define PKG_DESCRIPTION + Cronie contains the standard UNIX daemon crond that runs specified programs at \ + scheduled times and related tools. It is a fork of the \ + original vixie-cron and has security and configuration enhancements like \ + the ability to use pam and SELinux. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + + diff --git a/pkgs/iftop/iftop.nm b/pkgs/iftop/iftop.nm new file mode 100644 index 0000000..ddb0683 --- /dev/null +++ b/pkgs/iftop/iftop.nm @@ -0,0 +1,49 @@ +############################################################################### +# # +# 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 = iftop +PKG_VER = 0.17 +PKG_REL = 1 + +PKG_MAINTAINER = +PKG_GROUPS = Base Applications/System +PKG_URL = http://www.ex-parrot.com/pdw/iftop/ +PKG_LICENSE = GPL+ +PKG_SUMMARY = Interactive traffic listings + +PKG_BUILD_DEPS+= libpcap-devel ncurses-devel + +define PKG_DESCRIPTION + iftop is an interactive text-mode traffic viewer for Linux. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + +CONFIGURE_OPTIONS += \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + + diff --git a/pkgs/squidGuard/squidGuard.nm b/pkgs/squidGuard/squidGuard.nm new file mode 100644 index 0000000..0c0a9df --- /dev/null +++ b/pkgs/squidGuard/squidGuard.nm @@ -0,0 +1,64 @@ +############################################################################### +# # +# 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 = squidGuard +PKG_VER = 1.4.1 +PKG_REL = 1 + +PKG_MAINTAINER = Christian Schmidt christian.schmidt@ipfire.org +PKG_GROUPS = Networking/Daemons +PKG_URL = http://www.squidguard.org +PKG_LICENSE = GPLv2 +PKG_SUMMARY = Filter, redirector and access controller plugin for squid. + +PKG_BUILD_DEPS+= bison openldap-devel flex db4-devel shadow + +define PKG_DESCRIPTION + SquidGuard is a URL redirector used to use blacklists with the \ + proxysoftware Squid. +endef + +PKG_TARBALL = $(THISAPP).tar.gz + +CONFIGURE_OPTIONS += \ + --datadir=/usr/share \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-sg-config=/etc/squidGuard/squidGuard.conf \ + --with-sg-logdir=/var/log/squidGuard \ + --with-sg-dbhome=/var/lib/squidguard \ + --with-db=/usr \ + --with-db-inc=/usr/include \ + --with-db-lib=/usr/lib \ + --with-ldap + +define STAGE_PREPARE_CMDS + groupadd -g 23 -r squid + useradd -u 23 -r -s /sbin/nologin -d /var/spool/squid -M \ + -c 'Squid proxy user' -g squid squid +endef
hooks/post-receive -- IPFire 3.x development tree