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.
37 lines
868 B
Makefile
37 lines
868 B
Makefile
# New ports collection makefile for: libical
|
|
# Date created: 8 November 2002
|
|
# Whom: Joe Kelsey
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libical
|
|
PORTVERSION= 0.24
|
|
PORTREVISION= 2
|
|
DISTFILES= ${DISTNAME}.RC4${EXTRACT_SUFX}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= freeassociation
|
|
|
|
MAINTAINER= joe@zircon.seattle.wa.us
|
|
COMMENT= An implementation of the IETF's Calendaring and Scheduling protocols
|
|
|
|
USE_AUTOTOOLS= libtool:13:inc
|
|
USE_GMAKE= yes
|
|
USE_PERL5_BUILD=yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
CONFIGURE_ARGS= --enable-python=yes
|
|
USE_PYTHON= yes
|
|
PLIST_SUB+= PYTHON:=""
|
|
.else
|
|
CONFIGURE_ARGS= --enable-python=no
|
|
PLIST_SUB+= PYTHON:="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS} -fPIC"
|
|
.endif
|
|
.include <bsd.port.post.mk>
|