mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
35 lines
661 B
Makefile
35 lines
661 B
Makefile
# New ports collection makefile for: unfs3
|
|
# Date created: Mon Feb 16
|
|
# Whom: Clement Laforet <clement@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unfs3
|
|
PORTVERSION= 0.9.13
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= clement@FreeBSD.org
|
|
COMMENT= A user-space implementation of the NFSv3 server specification
|
|
|
|
USE_AUTOTOOLS= autoconf:259
|
|
USE_BISON= YES
|
|
|
|
MAN7= tags.7
|
|
MAN8= unfsd.8
|
|
PLIST_FILES= sbin/unfsd
|
|
|
|
.if defined(WITH_CLUSTER_EXT)
|
|
CONFIGURE_ARGS+= --enable-cluster
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
CFLAGS+= -DHAVE_SYS_MOUNT_H=1
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|