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 381d15eccf2ffd285f5205431a2cb702732ee147 (commit) via 0db4896e3f658e5f3e95eae540f7d2b028062ab2 (commit) from 28d2dc2117095eb463e5585db11746998b0fa47c (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 381d15eccf2ffd285f5205431a2cb702732ee147 Merge: 28d2dc2 0db4896 Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Jun 26 14:18:35 2011 +0200
Merge remote-tracking branch 'stevee/authconfig'
commit 0db4896e3f658e5f3e95eae540f7d2b028062ab2 Author: Stefan Schantl stefan.schantl@ipfire.org Date: Sun Jun 26 14:11:05 2011 +0200
authconfig: New package.
Fixes #211
-----------------------------------------------------------------------
Summary of changes: .../{shadow/shadow.nm => authconfig/authconfig.nm} | 74 ++++++++++---------- 1 files changed, 36 insertions(+), 38 deletions(-) copy pkgs/{shadow/shadow.nm => authconfig/authconfig.nm} (54%)
Difference in files: diff --git a/pkgs/authconfig/authconfig.nm b/pkgs/authconfig/authconfig.nm new file mode 100644 index 0000000..8a5a82c --- /dev/null +++ b/pkgs/authconfig/authconfig.nm @@ -0,0 +1,84 @@ +############################################################################### +# # +# 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 = authconfig +PKG_VER = 6.1.14 +PKG_REL = 1 + +PKG_MAINTAINER = +PKG_GROUPS = System/Base +PKG_URL = https://fedorahosted.org/authconfig +PKG_LICENSE = GPLv2+ +PKG_SUMMARY = Command line tool for setting up authentication from network services. + +PKG_BUILD_DEPS+= intltool python-devel +PKG_DESP += newt-python + +define PKG_DESCRIPTION + Authconfig is a command line utility which can configure a workstation\ + to use shadow (more secure) passwords. Authconfig can also configure a \ + system to be a client for certain networked user information and \ + authentication schemes. +endef + +PKG_TARBALL = $(THISAPP).tar.bz2 + +PKG_PACKAGES += $(PKG_NAME)-devel + +CONFIGURE_OPTIONS += \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static + +# Hack to allow installation of the desktop file +define STAGE_PREPARE_CMDS + ln -s /bin/true /usr/bin/desktop-file-install +endef + +define STAGE_INSTALL_CMDS + # Remove useless symlinks in /usr/bin + rm -rf $(BUILDROOT)/usr/bin + + # Replace absolute symlinks by relative ones + cd $(BUILDROOT)/usr/sbin && ln -sf ../share/authconfig/authconfig.py authconfig + cd $(BUILDROOT)/usr/sbin && ln -sf ../share/authconfig/authconfig-tui.py authconfig-tui + + # Remove symlinks for gtk + rm -rf $(BUILDROOT)/usr/sbin/authconfig-gtk + rm -rf $(BUILDROOT)/usr/sbin/system-config-authentication + + # Remove files for authconfig-gtk and system-config-authentication + rm -rf $(BUILDROOT)/etc/pam.d/authconfig-gtk + rm -rf $(BUILDROOT)/etc/pam.d/system-config-authentication + rm -rf $(BUILDROOT)/etc/security/console.apps/authconfig-gtk + rm -rf $(BUILDROOT)/etc/security/console.apps/system-config-authentication + rm -rf $(BUILDROOT)/usr/share/authconfig/authconfig-gtk.* + rm -rf $(BUILDROOT)/usr/share/man/man8/authconfig-gtk.8 + rm -rf $(BUILDROOT)/usr/share/man/man8/system-config-authentication.8 + + # Remove app icons for authconfig + rm -rf $(BUILDROOT)/usr/share/icons +endef
hooks/post-receive -- IPFire 3.x development tree