summaryrefslogtreecommitdiffstats
path: root/shadow/Pkgfile
blob: a34282e82eb2e685e76e08aad1abca33eb1fc34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Description: Utilitaire permettant de cacher les fichiers de mot de passe
# URL: http://shadow.pld.org.pl/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: linux-pam, pambase
# Run on: linux-pam,pambase

name=shadow
version=4.1.5.1
release=2
source=(http://pkg-shadow.alioth.debian.org/releases/$name-$version.tar.bz2)

build() {
	cd $name-$version

	# Disable the installation of groups
	sed -i 's/groups$(EXEEXT) //' src/Makefile.in
	find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \;

	# Disable the installation of the non french manual pages
	# Instead of using the default crypt  method, use the more secure SHA512 method of password encryption
	sed -i -e 's@#ENCRYPT_METHOD DES@ENCRYPT_METHOD SHA512@' \
	       -e 's@/var/spool/mail@/var/mail@' etc/login.defs

	./configure --sysconfdir=/etc \
		--with-libpam \
		--without-selinux
	make
	make DESTDIR=$PKG install
	for i in de cs fi id hu ja it ko pl ru sv tr pt_BR zh_CN zh_TW
		do rm -r $PKG/usr/share/man/$i
	done

	for FUNCTION in FAIL_DELAY FAILLOG_ENAB \
		LASTLOG_ENAB \
		MAIL_CHECK_ENAB \
		OBSCURE_CHECKS_ENAB \
		PORTTIME_CHECKS_ENAB \
		QUOTAS_ENAB \
		CONSOLE MOTD_FILE \
		FTMP_FILE NOLOGINS_FILE \
		ENV_HZ PASS_MIN_LEN \
		SU_WHEEL_ONLY \
		CRACKLIB_DICTPATH \
		PASS_CHANGE_TRIES \
		PASS_ALWAYS_WARN \
		CHFN_AUTH ENCRYPT_METHOD \
		ENVIRON_FILE
	do
		sed -i "s/^${FUNCTION}/# &/" $PKG/etc/login.defs
	done

	sed "/pam_selinux.so/d" -i $PKG/etc/pam.d/login
	sed "/pam_selinux.so/d" -i $PKG/etc/pam.d/su

	# Remove the default as it is part of aaabasicfs
	rm -rf $PKG/etc/default
	mkdir $PKG/usr/lib
	mv -v $PKG/usr/bin/passwd $PKG/bin
}