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.
31 lines
781 B
Makefile
31 lines
781 B
Makefile
# New ports collection makefile for: gmime
|
|
# Date created: 7 Apr 2001
|
|
# Whom: Bas Kruit <baskruit@bsltwr.dnsalias.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gmime
|
|
PORTVERSION= 1.0.8
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://spruce.sourceforge.net/gmime/sources/v1.0/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library (written in C) for parsing and creating messages using MIME
|
|
|
|
CONFLICTS= gmime-2.1.*
|
|
USE_X_PREFIX= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_GMAKE= YES
|
|
USE_GNOME= glib12
|
|
USE_ICONV= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CFLAGS+= -L${LOCALBASE}/lib # req'd to find iconv
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
MAKE_ARGS= confexecdir=${PREFIX}/etc
|
|
|
|
INSTALLS_SHLIB= YES
|
|
|
|
.include <bsd.port.mk>
|