]> git.ipfire.org Git - ipfire-3.x.git/blob - cracklib/cracklib.nm
git: Update to 2.23.0
[ipfire-3.x.git] / cracklib / cracklib.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = cracklib
7 version = 2.9.5
8 release = 2
9
10 groups = Security/Password
11 url = http://sourceforge.net/projects/cracklib/
12 license = GPLv2
13 summary = A password-checking library.
14
15 description
16 CrackLib tests passwords to determine whether they match certain \
17 security-oriented characteristics, with the purpose of stopping users \
18 from choosing passwords that are easy to guess. CrackLib performs \
19 several tests on passwords: it tries to generate words from a username \
20 and gecos entry and checks those words against the password; it checks \
21 for simplistic patterns in passwords; and it checks for the password \
22 in a dictionary.
23 end
24
25 source_dl = http://prdownloads.sourceforge.net/cracklib/
26 sources += cracklib-words-20080507.gz
27
28 build
29 requires
30 python-devel
31 end
32
33 dictdir = %{datadir}/cracklib
34 dictpath = %{dictdir}/pw_dict
35
36 export LD_LIBRARY_PATH = %{DIR_APP}/lib/.libs
37
38 configure_options += \
39 --with-default-dict=%{dictpath} \
40 --with-python \
41 --disable-static
42
43 # Only extract the source tarball.
44 prepare
45 cd %{DIR_SRC} && %{MACRO_EXTRACT} %{DIR_DL}/%{thisapp}.tar.gz
46 cd %{DIR_APP}
47
48 cp lib/packer.h lib/packer.h.in
49 chmod +x util/cracklib-format
50
51 mkdir cracklib-dicts
52 cp -vf %{DIR_DL}/cracklib-words-20080507.gz cracklib-dicts
53
54 # Create distribution dict.
55 echo -ne "%{DISTRO_NAME}\n%{DISTRO_SNAME}\n" >> \
56 cracklib-dicts/cracklib-distro-words
57 gzip -9 cracklib-dicts/cracklib-distro-words
58 end
59
60 install_cmds
61 # Install python bindings
62 make install DESTDIR=%{BUILDROOT} INSTALL="install -c -p" -C python
63
64 mkdir -pv %{BUILDROOT}{%{dictdir},%{dictpath}}
65 util/cracklib-format cracklib-dicts/* | \
66 util/cracklib-packer %{BUILDROOT}%{dictpath}
67 util/cracklib-format %{BUILDROOT}%{dictdir}/cracklib-small | \
68 util/cracklib-packer %{BUILDROOT}%{dictdir}/cracklib-small
69 rm -f %{BUILDROOT}%{dictdir}/cracklib-small
70
71 sed -e "s@/usr/lib/cracklib_dict@%{dictpath}@g" lib/crack.h \
72 > %{BUILDROOT}%{includedir}/crack.h
73
74 ln -svf cracklib-format %{BUILDROOT}%{sbindir}/mkdict
75 ln -svf cracklib-packer %{BUILDROOT}%{sbindir}/packer
76
77 toprelpath=..
78 touch %{BUILDROOT}/top
79 while ! test -f %{BUILDROOT}%{libdir}/${toprelpath}/top; do
80 toprelpath=../${toprelpath}
81 done
82 rm -f %{BUILDROOT}/top
83
84 if [ "%{dictpath}" != "%{libdir}/cracklib_dict" ]; then
85 ln -svf ${toprelpath}%{dictpath}.hwm %{BUILDROOT}%{libdir}/cracklib_dict.hwm
86 ln -svf ${toprelpath}%{dictpath}.pwd %{BUILDROOT}%{libdir}/cracklib_dict.pwd
87 ln -svf ${toprelpath}%{dictpath}.pwi %{BUILDROOT}%{libdir}/cracklib_dict.pwi
88 fi
89 end
90 end
91
92 packages
93 package %{name}
94 requires = %{name}-dicts
95 end
96
97 package %{name}-devel
98 template DEVEL
99 end
100
101 # We build an extra package with the dictionaries.
102 package %{name}-dicts
103 summary = Dictionaries for %{thisapp}.
104 description = %{summary}
105
106 files
107 %{dictdir}
108 %{dictpath}
109 end
110 end
111
112 # We build an extra python package with the bindings for it.
113 package python-cracklib
114 summary = Python bindings for %{thisapp}.
115 description = %{summary}
116
117 files
118 /usr/lib/python*
119 %{libdir}/python*
120 end
121 end
122
123 package %{name}-debuginfo
124 template DEBUGINFO
125 end
126 end