diff options
author | Foxfair Hu <foxfair@FreeBSD.org> | 2003-05-06 03:10:46 +0000 |
---|---|---|
committer | Foxfair Hu <foxfair@FreeBSD.org> | 2003-05-06 03:10:46 +0000 |
commit | f1b3b8a870ef38664b97d6a4b712da868407157f (patch) | |
tree | aebbb0d0fa6ee0c1b983e8a6d4597e3094f1c29c /security/xmlsec1/Makefile | |
parent | PR: (diff) |
Add xmlsec1 1.0.1 released at Apr 28 2003. This is the latest stable version
of a C library based on LibXML2 and OpenSSL. Origial PR was intended to
import 1.0.0 but we have a newer version to go now, also enable GnuTLS
support .
PR: 51102
Submitted by: Jim Geovedi <jim@corebsd.or.id>
Notes
Notes:
svn path=/head/; revision=80199
Diffstat (limited to 'security/xmlsec1/Makefile')
-rw-r--r-- | security/xmlsec1/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/security/xmlsec1/Makefile b/security/xmlsec1/Makefile new file mode 100644 index 000000000000..a21f7839c496 --- /dev/null +++ b/security/xmlsec1/Makefile @@ -0,0 +1,39 @@ +# Ports collection makefile for: xmlsec1 +# Date created: Apr 17, 2003 +# Whom: Jim Geovedi <jim@corebsd.or.id> +# +# $FreeBSD$ +# + +PORTNAME= xmlsec1 +PORTVERSION= 1.0.1 +CATEGORIES= security +MASTER_SITES= http://www.aleksey.com/xmlsec/download/ \ + ftp://ftp.aleksey.com/pub/xmlsec/releases/ \ + ftp://ftp.xmlsoft.org/xmlsec/releases/ \ + ftp://ftp.rpmfind.net/pub/XML/xmlsec/releases/ + +MAINTAINER= jim@corebsd.or.id +COMMENT= XML Security Library + +LIB_DEPENDS= xslt:${PORTSDIR}/textproc/libxslt \ + gnutls.8:${PORTSDIR}/security/gnutls + +USE_LIBTOOL= yes +USE_OPENSSL= yes +USE_REINPLACE= yes +INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes + +CONFIGURE_TARGET= -build=${ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ARGS+= --with-gnutls="${LOCALBASE}" + +MAN1= xmlsec1.1 xmlsec1-config.1 + +post-configure: +.if defined(NOPORTDOCS) + @${REINPLACE_CMD} -e "s:src apps man docs:src apps man:g" \ + ${WRKSRC}/Makefile +.endif + +.include <bsd.port.mk> |