X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=lfs%2Fshadow;h=f2814314d5e105035993cd67c6129501fc9a6961;hp=ce6569a08951abfa63078520c4147313d1533741;hb=5b92634cdbf9089968a921c43dcfdcfe68b0f4ba;hpb=cd1a2927226c734d96478e12bb768256fb64a06a diff --git a/lfs/shadow b/lfs/shadow index ce6569a089..f2814314d5 100644 --- a/lfs/shadow +++ b/lfs/shadow @@ -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 # -# # -# 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 . # # # ############################################################################### @@ -32,12 +24,11 @@ include Config -VER = 4.0.4.1 +VER = 4.0.15 THISAPP = shadow-$(VER) -DL_FILE = $(THISAPP).tar.gz -DL_FROM = ftp://ftp.pld.org.pl/software/shadow/old -#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)