]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
authconfig: New package.
authorStefan Schantl <stefan.schantl@ipfire.org>
Sun, 26 Jun 2011 12:11:05 +0000 (14:11 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Sun, 26 Jun 2011 12:11:05 +0000 (14:11 +0200)
Fixes #211

pkgs/authconfig/authconfig.nm [new file with mode: 0644]

diff --git a/pkgs/authconfig/authconfig.nm b/pkgs/authconfig/authconfig.nm
new file mode 100644 (file)
index 0000000..8a5a82c
--- /dev/null
@@ -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