224b85f035
update gnutls to 1.0.25; regen patches while i am here http://www.vuxml.org/openbsd/086072e4-c180-11d9-aaa3-00065bd5b0b6.html ok Jim Geovedi (maintainer)
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2005/05/11 11:16:07 robert Exp $
|
|
|
|
COMMENT= "GNU Transport Layer Security library"
|
|
|
|
VERSION= 1.0.25
|
|
DISTNAME= gnutls-${VERSION}
|
|
CATEGORIES= security
|
|
|
|
HOMEPAGE= http://www.gnutls.org/
|
|
MAINTAINER= Jim Geovedi <jim@corebsd.or.id>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c gpg-error intl z
|
|
|
|
MASTER_SITES= ftp://ftp.gnutls.org/pub/gnutls/ \
|
|
ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/ \
|
|
http://josefsson.org/gnutls/releases/ \
|
|
http://ftp.linux.it/pub/mirrors/gnupg/gnutls/
|
|
|
|
MODULES= converters/libiconv
|
|
LIB_DEPENDS= gcrypt.12::security/libgcrypt \
|
|
opencdk.8::security/opencdk
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
--with-included-libtasn1 \
|
|
--with-included-libcfg \
|
|
--with-included-lzo
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gnutls
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gnutls
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/gnutls
|
|
${INSTALL_DATA} ${WRKSRC}/doc/examples/*.c \
|
|
${PREFIX}/share/examples/gnutls
|
|
|
|
.include <bsd.port.mk>
|