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.
28 lines
606 B
Makefile
28 lines
606 B
Makefile
# New ports collection makefile for: puredb
|
|
# Date created: 01 Nov 2002
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= puredb
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.pureftpd.org/puredb/
|
|
DISTNAME= pure-db-${PORTVERSION}
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= Set of libraries for creating and reading constant databases
|
|
|
|
USE_AUTOTOOLS= libtool:13
|
|
INSTALLS_SHLIB= yes
|
|
|
|
DOCS= AUTHORS FORMAT_DESCR NEWS README
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|