diff options
author | krion <krion@FreeBSD.org> | 2003-12-05 22:22:50 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-12-05 22:22:50 +0800 |
commit | 557cc708568366204d76464dd6379d6211db104f (patch) | |
tree | e82e7b12bc13ea971c63fdb21a2acd32d6452652 /security/gsasl/Makefile | |
parent | 81a877e5ff9844f0a0827b076668762abcf576eb (diff) | |
download | freebsd-ports-gnome-557cc708568366204d76464dd6379d6211db104f.tar.gz freebsd-ports-gnome-557cc708568366204d76464dd6379d6211db104f.tar.zst freebsd-ports-gnome-557cc708568366204d76464dd6379d6211db104f.zip |
- Update to version 0.0.10
PR: 59758
Submitted by: Ports Fury
Diffstat (limited to 'security/gsasl/Makefile')
-rw-r--r-- | security/gsasl/Makefile | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/security/gsasl/Makefile b/security/gsasl/Makefile index 3d67fa212281..8ee0d8239b7f 100644 --- a/security/gsasl/Makefile +++ b/security/gsasl/Makefile @@ -7,7 +7,7 @@ # PORTNAME= gsasl -PORTVERSION= 0.0.8 +PORTVERSION= 0.0.10 CATEGORIES= security MASTER_SITES= http://josefsson.org/${PORTNAME}/releases/ \ ${MASTER_SITE_GNU_ALPHA} @@ -16,24 +16,31 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= GNU SASL Library -BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig -LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv \ - intl.5:${PORTSDIR}/devel/gettext \ - ntlm.0:${PORTSDIR}/security/libntlm \ +LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext \ + idn.12:${PORTSDIR}/devel/libidn \ gcrypt.6:${PORTSDIR}/security/libgcrypt \ - idn.12:${PORTSDIR}/devel/libidn + ntlm.0:${PORTSDIR}/security/libntlm \ -USE_GNOME= gnomehack gnomeprefix +USE_GNOME= gnomehack gnometarget pkgconfig +USE_GETOPT_LONG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= LDFLAGS="-L${LOCALBASE}/lib" - +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +CONFIGURE_ARGS= --disable-gssapi --disable-kerberos_v5 INSTALLS_SHLIB= yes INFO= gsasl -MAN1= gsasl.1 -post-install: - @(cd ${WRKSRC}/doc/man ; \ - ${LS} *.3 | ${SED} 's,^,man/man3/,' >> ${TMPPLIST}) +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib + +.include <bsd.port.pre.mk> -.include <bsd.port.mk> +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC}/doc/html && ${FIND} . | \ + cpio -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} +.endif + +.include "Makefile.man" +.include <bsd.port.post.mk> |