mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
33 lines
790 B
Makefile
33 lines
790 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.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://spruce.sourceforge.net/gmime/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library (written in C) for parsing and creating messages using MIME
|
|
|
|
LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv
|
|
|
|
CONFLICTS= gmime-2.1.*
|
|
USE_X_PREFIX= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_GMAKE= YES
|
|
USE_GNOME= glib12
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
|
|
INSTALLS_SHLIB= YES
|
|
|
|
.include <bsd.port.mk>
|