blob: 29f368a118b9dbe29d41922ef06ca777916bc7eb (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-0.75-r11.ebuild,v 1.26 2004/05/12 13:26:01 pappy Exp $
inherit gcc eutils flag-o-matic
IUSE="berkdb selinux"
PATCH_LEVEL=""
SELINUX_PATCH="pam-0.75-selinux.diff.bz2"
S="${WORKDIR}/Linux-PAM-${PV}"
S2="${WORKDIR}/pam"
DESCRIPTION="Pluggable Authentication Modules"
SRC_URI="http://www.kernel.org/pub/linux/libs/pam/pre/library/Linux-PAM-${PV}.tar.gz
mirror://gentoo/pam-${PVR}${PATCH_LEVEL}-gentoo.tbz2"
HOMEPAGE="http://www.kernel.org/pub/linux/libs/pam/"
LICENSE="BSD | GPL-2"
KEYWORDS="amd64 x86 ppc sparc alpha hppa mips"
SLOT="0"
RDEPEND=">=sys-libs/cracklib-2.7-r3
=dev-libs/glib-1.2*
>=sys-libs/pwdb-0.61-r4
berkdb? ( >=sys-libs/db-3.2.9 )
selinux? ( sys-libs/libselinux )"
DEPEND="$RDEPEND
>=sys-devel/autoconf-2.58
>=sys-devel/automake-1.6
>=sys-devel/flex-2.5.4a-r5"
src_unpack() {
unpack ${A}
cd ${S}
tar -jxf ${S2}/pam-redhat-0.75-41.1.tar.bz2 || \
die "Failed to unpack pam-redhat-0.75-41.1.tar.bz2"
cp /usr/share/automake/install-sh . || die
ln -sf defs/redhat.defs default.defs
for x in $(cat ${S2}/patch.list ${S2}/patch.list.gentoo)
do
if [ -f ${S2}/patchdir/${x} ]
then
epatch ${S2}/patchdir/${x}
fi
done
use selinux && epatch ${FILESDIR}/${SELINUX_PATCH}
cd ${S}/doc
einfo "Unpacking docs..."
tar -xvzf Linux-PAM-0.75-docs.tar.gz > /dev/null || \
die "Failed to unpack docs!"
cd ${S}; einfo "Installing module docs..."
for readme in modules/pam_*/README
do
cp -f ${readme} doc/txts/README.$(dirname ${readme} | sed -e 's|^modules/||')
done
epatch ${FILESDIR}/pam-0.75-configure-db4.patch
einfo "Generating configure..."
export WANT_AUTOCONF=2.5
cd ${S}; autoconf || :
}
src_compile() {
export CFLAGS="${CFLAGS} -fPIC"
if [ "${ARCH}" = "alpha" ]; then
if [ ! -z "`strings -a /usr/lib/libglib.a | grep -i 'Compaq Computer Corp.'`" ] ; then
# should be LDFLAGS, but this configure is screwy.
einfo "It looks like you compiled glib with ccc, this is okay, but"
einfo "I'll need to force gcc to link with libots...."
append-flags -lots
cp ${S}/modules/pam_pwdb/Makefile ${S}/modules/pam_pwdb/Makefile.orig
sed -e 's/$(CC) -o/$(CC) -lots -o/g' ${S}/modules/pam_pwdb/Makefile.orig > \
${S}/modules/pam_pwdb/Makefile
fi
fi
./configure --host=${CHOST} \
--prefix=/ \
--sbindir=/usr/sbin \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-securedir=/lib/security \
--enable-fakeroot=${D} \
--enable-static-libpam \
|| die "Failed to configure"
# Python stuff in docs gives sandbox problems
cp Makefile Makefile.orig
sed -e "s:libpam_misc doc examples:libpam_misc:" \
Makefile.orig > Makefile
# Fix warnings for gcc-2.95.3
if [ "$(gcc-version)" = "2.95" ]
then
cp Make.Rules Make.Rules.orig
sed -e "s:-Wpointer-arith::" \
Make.Rules.orig > Make.Rules
rm -f Make.Rules.orig
fi
if [ -z "$(use berkdb)" ]
then
cp Make.Rules Make.Rules.orig
sed -e "s:^HAVE_LIBNDBM=yes:HAVE_LIBNDBM=no:" \
Make.Rules.orig > Make.Rules
rm -f Make.Rules.orig
fi
# work/Linux-PAM-0.75/modules/pam_pwdb/Makefile: $(CC) -o $(CHKPWD) $^ -lpwdb
if use hardened
then
sed -i "s:-lpwdb:-lpwdb -lcrypt:g" ${WORKDIR}/Linux-PAM-0.75/modules/pam_pwdb/Makefile
fi
make || die "Failed to build"
}
src_install() {
make FAKEROOT=${D} \
LDCONFIG="" \
install || die
# Make sure every module built.
# Do not remove this, as some module can fail to build
# and effectively lock the user out of his system.
einfo "Checking if all modules were built..."
for x in ${S}/modules/pam_*
do
if [ -d ${x} ]
then
if ! ls -1 ${D}/lib/security/$(basename ${x})*.so &> /dev/null
then
if [ -z "$(use berkdb)" -a "$(basename ${x})" = "pam_userdb" ]
then
continue
fi
eerror "ERROR: $(basename ${x}) module did not build."
exit 1
fi
fi
done
cd ${S}
dodoc CHANGELOG Copyright README
docinto modules
dodoc modules/README
dodoc doc/txts/README.*
docinto txt
dodoc doc/txts/*.txt doc/specs/*.txt
docinto print
dodoc doc/ps/*.ps
doman doc/man/*.[38]
docinto html
dohtml -r doc/html/
dodir /usr/lib
cd ${D}/lib
for x in pam pamc pam_misc
do
rm lib${x}.so
ln -s lib${x}.so.${PV} lib${x}.so
ln -s lib${x}.so.${PV} lib${x}.so.0
mv lib${x}.a ${D}/usr/lib
# See bug #4411
gen_usr_ldscript lib${x}.so
done
# need this for pam_console
keepdir /var/run/console
insinto /etc/pam.d
for x in ${FILESDIR}/${PVR}/pam.d/*
do
if [ -f ${x} ]
then
doins ${x}
fi
done
}
|