mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
a32defea5d
- Remove obsolete MD5 checksum while I'm here PR: ports/152844 Submitted by: sunpoet (myself) Approved by: miwi (with portmgr hat)
37 lines
830 B
Makefile
37 lines
830 B
Makefile
# New ports collection makefile for: libical
|
|
# Date created: 8 November 2002
|
|
# Whom: Joe Kelsey
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libical
|
|
PORTVERSION= 0.44
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/freeassociation/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= An implementation of the IETF's Calendaring and Scheduling protocols
|
|
|
|
USE_GNOME= gnomehack
|
|
USE_AUTOTOOLS= libtool
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_PERL5_BUILD=yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include"
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
CONFIGURE_ARGS= --enable-python=yes
|
|
USE_PYTHON= yes
|
|
.else
|
|
CONFIGURE_ARGS= --enable-python=no
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|