pam: update to 1.1.5.
This commit is contained in:
parent
c685552f9d
commit
220302f278
1 changed files with 11 additions and 9 deletions
|
@ -1,13 +1,14 @@
|
||||||
# Template file for 'pam'
|
# Template file for 'pam'
|
||||||
pkgname=pam
|
pkgname=pam
|
||||||
version=1.1.4
|
version=1.1.5
|
||||||
wrksrc="Linux-PAM-$version"
|
wrksrc="Linux-PAM-$version"
|
||||||
distfiles="${KERNEL_SITE}/libs/pam/library/Linux-PAM-$version.tar.bz2"
|
#distfiles="${KERNEL_SITE}/libs/pam/library/Linux-PAM-$version.tar.bz2"
|
||||||
|
distfiles="https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$version.tar.bz2"
|
||||||
short_desc="A flexible mechanism for authenticating users"
|
short_desc="A flexible mechanism for authenticating users"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.kernel.org/pub/linux/libs/pam/"
|
homepage="http://www.kernel.org/pub/linux/libs/pam/"
|
||||||
license="GPL-2"
|
license="GPL-2"
|
||||||
checksum=ccd89331914390b1e9e99c954471d65f19b660d81e15a46eeb96cee125d44056
|
checksum=65def4df04254dc4c5156859d36c34ad6d7afbcf3adbf2780530ebc4dbf2a116
|
||||||
long_desc="
|
long_desc="
|
||||||
Linux-PAM provides a flexible mechanism for authenticating users.
|
Linux-PAM provides a flexible mechanism for authenticating users.
|
||||||
PAM was invented by SUN Microsystems."
|
PAM was invented by SUN Microsystems."
|
||||||
|
@ -29,22 +30,23 @@ Add_dependency build gettext
|
||||||
Add_dependency build cracklib-devel
|
Add_dependency build cracklib-devel
|
||||||
Add_dependency build db-devel
|
Add_dependency build db-devel
|
||||||
|
|
||||||
do_build()
|
do_configure() {
|
||||||
{
|
./configure ${CONFIGURE_SHARED_ARGS} \
|
||||||
./configure ${CONFIGURE_SHARED_ARGS} --disable-selinux --libdir=/lib \
|
--disable-selinux --libdir=/lib \
|
||||||
--disable-rpath --docdir=/usr/share/doc/pam \
|
--disable-rpath --docdir=/usr/share/doc/pam \
|
||||||
--enable-read-both-confs DESTDIR=${DESTDIR}
|
--enable-read-both-confs DESTDIR=${DESTDIR}
|
||||||
|
}
|
||||||
|
|
||||||
|
do_build() {
|
||||||
make ${makejobs}
|
make ${makejobs}
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install()
|
do_install() {
|
||||||
{
|
|
||||||
make DESTDIR=${DESTDIR} install
|
make DESTDIR=${DESTDIR} install
|
||||||
|
|
||||||
rm -rf ${DESTDIR}/var
|
rm -rf ${DESTDIR}/var
|
||||||
# Fix unix_chkpwd perms.
|
# Fix unix_chkpwd perms.
|
||||||
chmod 4755 ${DESTDIR}/sbin/unix_chkpwd
|
chmod 4755 ${DESTDIR}/sbin/unix_chkpwd
|
||||||
|
|
||||||
#
|
#
|
||||||
# Fix a syntax error in namespace.init, -p flag is unknown
|
# Fix a syntax error in namespace.init, -p flag is unknown
|
||||||
# at least to dash and bash.
|
# at least to dash and bash.
|
||||||
|
|
Loading…
Reference in a new issue