]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/shadow
Add openvpn files to core31
[people/pmueller/ipfire-2.x.git] / lfs / shadow
index a6a084bee5010554909aa7ea23032f143ffd6542..f2814314d5e105035993cd67c6129501fc9a6961 100644 (file)
@@ -1,28 +1,20 @@
 ###############################################################################
-# This file is part of the IPCop Firewall.                                    #
 #                                                                             #
-# IPCop is free software; you can redistribute it and/or modify               #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  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 2 of the License, or           #
+# the Free Software Foundation, either version 3 of the License, or           #
 # (at your option) any later version.                                         #
 #                                                                             #
-# IPCop is distributed in the hope that it will be useful,                    #
+# 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 IPCop; if not, write to the Free Software                        #
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
-#                                                                             #
-# Makefiles are based on LFSMake, which is                                    #
-# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
-#                                                                             #
-# Modifications by:                                                           #
-# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
-#          - Modified Makefile for IPCop build                                #
-#                                                                             #
-# $Id: shadow,v 1.9.2.8 2005/03/15 18:00:09 gespinasse Exp $
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
 #                                                                             #
 ###############################################################################
 
 
 include Config
 
-VER        = 4.0.4.1
+VER        = 4.0.15
 
 THISAPP    = shadow-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = $(URL_IPCOP)
-#DL_FROM     =         http://wiretapped.securax.org/security/host-security/shadow/old
+DL_FILE    = $(THISAPP).tar.bz2
+DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
@@ -49,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 4e5662f360a29f174a19163c8d8a0698
+$(DL_FILE)_MD5 = a0452fa989f8ba45023cc5a08136568e
 
 install : $(TARGET)
 
@@ -78,26 +69,24 @@ $(subst %,%_MD5,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       touch /var/run/utmp /var/log/{btmp,lastlog,wtmp}
-       chmod 644 /var/run/utmp /var/log/{btmp,lastlog,wtmp}
-       touch /usr/bin/passwd
-       cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls --libdir=/usr/lib --enable-shared
-       cd $(DIR_APP) && make
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && ./configure --libdir=/lib --enable-shared --without-selinux --disable-nls
+       cd $(DIR_APP) && sed -i 's/groups$(EXEEXT) //' src/Makefile
+       cd $(DIR_APP) && find man -name Makefile -exec sed -i '/groups/d' {} \;
+       cd $(DIR_APP) && sed -i -e 's/ ko//' -e 's/ zh_CN zh_TW//' man/Makefile
+       cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
-       cd $(DIR_APP) && cp -f etc/{limits,login.access} /etc
-       cd $(DIR_APP) && sed -e 's%/var/spool/mail%/var/mail%' \
-           -e 's%#MD5_CRYPT_ENAB.no%MD5_CRYPT_ENAB yes%' \
-           etc/login.defs.linux > /etc/login.defs
-       ln -sf vipw /usr/sbin/vigr
-       mv -f /bin/sg /usr/bin
-       mv -f /usr/lib/lib{shadow,misc}.so.0* /lib
-       ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so
-       ln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so
-       rm /bin/vigr
-       rm /bin/groups
-       /usr/sbin/pwconv
-       /usr/sbin/grpconv
-       chmod u-s /usr/bin/{chfn,chsh,chage,expiry,newgrp,passwd,gpasswd}
+       cd $(DIR_APP) && cp -v etc/{limits,login.access} /etc
+       cd $(DIR_APP) && sed -e's@#MD5_CRYPT_ENAB.no@MD5_CRYPT_ENAB yes@' \
+                               -e 's@/var/spool/mail@/var/mail@' \
+                               etc/login.defs > /etc/login.defs
+       mv -v /usr/bin/passwd /bin
+       mv -v /lib/libshadow.*a /usr/lib
+       rm -v /lib/libshadow.so
+       ln -sfv ../../lib/libshadow.so.0 /usr/lib/libshadow.so
+       mkdir -v /etc/default
+       touch /etc/shadow
+       chmod 600 /etc/shadow
+       pwconv
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)