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
749 B
Makefile
35 lines
749 B
Makefile
# New ports collection makefile for: ffcall
|
|
# Date created: 21 February 2001
|
|
# Whom: jagapen@home.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ffcall
|
|
PORTVERSION= 1.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.santafe.edu/pub/gnu/
|
|
MASTER_SITES+= ${MASTER_SITE_GNUSTEP}
|
|
MASTER_SITE_SUBDIR= libs
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Foreign function call libraries
|
|
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
NOT_FOR_ARCHS= sparc64
|
|
|
|
MAN3= avcall.3 callback.3 trampoline.3 trampoline_r.3 vacall.3
|
|
MANCOMPRESSED= no
|
|
CFLAGS+= -fPIC
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL}
|
|
.else
|
|
CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|