Added libsasl-2.1.23 build template.

--HG--
extra : convert_revision : e4c7b8ab096894e2ce819a1f5f39164c3ee6276a
This commit is contained in:
Juan RP 2010-04-18 14:41:17 +02:00
parent 9a9e7310dc
commit fad23ff1e7
5 changed files with 57 additions and 0 deletions

1
srcpkgs/libsasl-devel Symbolic link
View file

@ -0,0 +1 @@
libsasl

2
srcpkgs/libsasl/depends Normal file
View file

@ -0,0 +1,2 @@
abi_depends=">=2.1.23"
api_depends="${abi_depends}"

View file

@ -0,0 +1,16 @@
# Template file for 'libsasl-devel'.
#
short_desc="${sourcepkg} - development files"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run db-devel
Add_dependency run libsasl
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/{include,share} ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/lib*.so ${DESTDIR}/usr/lib
}

37
srcpkgs/libsasl/template Normal file
View file

@ -0,0 +1,37 @@
# Template file for 'libsasl'
pkgname=libsasl
version=2.1.23
wrksrc="cyrus-sasl-${version}"
distfiles="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-$version.tar.gz"
build_style=gnu_configure
configure_args="--localstatedir=/var --disable-anon --disable-cram
--disable-digest --disable-gssapi --disable-otp --disable-login
--disable-plain"
short_desc="Cyrus SASL - authentication abstraction library"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=20efcc4040cbab6e89a636a07dcf5720ee07b5c62359a4e7bf2500ef6020b136
long_desc="
SASL is the Simple Authentication and Security Layer, a method for adding
authentication support to connection-based protocols. To use SASL, a protocol
includes a command for identifying and authenticating a user to a server and
for optionally negotiating protection of subsequent protocol interactions.
If its use is negotiated, a security layer is inserted between the protocol
and the connection. See RFC 2222 for more information.
Any of: ANONYMOUS, CRAM-MD5, DIGEST-MD5, GSSAPI (MIT or Heimdal Kerberos 5),
NTLM, OTP, PLAIN, or LOGIN can be used. If you intend to use this package on a
server that provides SASL authentication, then you must install some of the
cyrus-sasl-modules* packages."
subpackages="libsasl-devel"
Add_dependency run glibc
Add_dependency run db
Add_dependency build db-devel
post_install()
{
# Remove unused stuff.
rm -rf ${DESTDIR}/usr/sbin
rm -rf ${DESTDIR}/usr/share/man/man8
}

View file

@ -614,3 +614,4 @@ libgdkmm-2.4.so gtkmm gtkmm-devel
libgksu2.so libgksu libgksu-devel
libseed.so libseed libseed-devel
libgnome-bluetooth.so gnome-bluetooth gnome-bluetooth-devel
libsasl2.so libsasl libsasl-devel