b211ccfc56
GNU SASL is an implementation of the Simple Authentication and Security Layer framework and a few common SASL mechanisms. SASL is used by network servers (e.g., IMAP, SMTP) to request authentication from clients, and in clients to authenticate against servers. OK sthen@
31 lines
698 B
Makefile
31 lines
698 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/10/24 08:13:53 sebastia Exp $
|
|
|
|
COMMENT= GNU implementation of the SASL framework
|
|
|
|
DISTNAME= libgsasl-1.4.4
|
|
CATEGORIES= security
|
|
HOMEPAGE= http://www.gnu.org/software/gsasl/
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=gsasl/}
|
|
MAINTAINER= Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
SHARED_LIBS += gsasl 0.0 # 14.6
|
|
|
|
# LGPLv2.1
|
|
PERMIT_PACKAGE_CDROM= yes
|
|
PERMIT_PACKAGE_FTP= yes
|
|
PERMIT_DISTFILES_CDROM= yes
|
|
PERMIT_DISTFILES_FTP= yes
|
|
|
|
MODULES= converters/libiconv devel/gettext
|
|
|
|
WANTLIB+= gcrypt gpg-error idn
|
|
LIB_DEPENDS= ::devel/libidn \
|
|
::security/libgpg-error \
|
|
::security/libgcrypt
|
|
|
|
USE_LIBTOOL= Yes
|
|
SEPARATE_BUILD= simple
|
|
CONFIGURE_STYLE=gnu
|
|
|
|
.include <bsd.port.mk>
|