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.
33 lines
766 B
Makefile
33 lines
766 B
Makefile
# New ports collection makefile for: proj
|
|
# Date created: 15 November 2001
|
|
# Whom: jedgar@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= proj
|
|
PORTVERSION= 4.4.9
|
|
PORTREVISION= 0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://ftp.remotesensing.org/pub/proj/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${NADFILES}
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= jedgar@FreeBSD.org
|
|
COMMENT= Cartographic Projections library
|
|
|
|
NADFILES= proj-nad27-1.2.tar.gz
|
|
|
|
USE_AUTOTOOLS= libtool:13:inc
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= cs2cs.1 geod.1 nad2nad.1 proj.1
|
|
MAN3= pj_init.3
|
|
|
|
post-extract:
|
|
.for file in ${NADFILES}
|
|
@cd ${WRKSRC}/nad && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${file} ${EXTRACT_AFTER_ARGS}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|