From: Stefan Schantl Date: Sun, 26 Jun 2011 12:11:05 +0000 (+0200) Subject: authconfig: New package. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0db4896e3f658e5f3e95eae540f7d2b028062ab2;p=ipfire-3.x.git authconfig: New package. Fixes #211 --- diff --git a/pkgs/authconfig/authconfig.nm b/pkgs/authconfig/authconfig.nm new file mode 100644 index 000000000..8a5a82c84 --- /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 . # +# # +############################################################################### + +############################################################################### +# 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