3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
33 lines
894 B
Makefile
33 lines
894 B
Makefile
# New ports collection makefile for: libtasn1
|
|
# Date created: 15 Nov 2002
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libtasn1
|
|
PORTVERSION= 0.2.7
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GNUPG} \
|
|
http://www.mirrors.wiretapped.net/security/network-security/gnutls/libtasn1/ \
|
|
ftp://ftp.mirrors.wiretapped.net/security/network-security/gnutls/libtasn1/ \
|
|
ftp://ftp.gnutls.org/pub/gnutls/libtasn1/
|
|
MASTER_SITE_SUBDIR= alpha/gnutls/libtasn1
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= ASN.1 structure parser library
|
|
|
|
USE_LIBTOOL_VER=13
|
|
INSTALLS_SHLIB= yes
|
|
USE_GETOPT_LONG= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
DOCS= AUTHORS NEWS README THANKS doc/asn1.ps doc/asn1.tex doc/fdl.tex
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|