From owner-svn-ports-all@FreeBSD.ORG  Fri Aug  9 07:48:26 2013
Return-Path: <owner-svn-ports-all@FreeBSD.ORG>
Delivered-To: svn-ports-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTP id EF3932C1;
 Fri,  9 Aug 2013 07:48:26 +0000 (UTC) (envelope-from kwm@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (No client certificate requested)
 by mx1.freebsd.org (Postfix) with ESMTPS id DC9062456;
 Fri,  9 Aug 2013 07:48:26 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r797mQMi016817;
 Fri, 9 Aug 2013 07:48:26 GMT (envelope-from kwm@svn.freebsd.org)
Received: (from kwm@localhost)
 by svn.freebsd.org (8.14.7/8.14.5/Submit) id r797mQpx016816;
 Fri, 9 Aug 2013 07:48:26 GMT (envelope-from kwm@svn.freebsd.org)
Message-Id: <201308090748.r797mQpx016816@svn.freebsd.org>
From: Koop Mast <kwm@FreeBSD.org>
Date: Fri, 9 Aug 2013 07:48:26 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r324418 - head/www/evolution-webcal
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-all@freebsd.org
X-Mailman-Version: 2.1.14
Precedence: list
List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/options/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all>
List-Post: <mailto:svn-ports-all@freebsd.org>
List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 09 Aug 2013 07:48:27 -0000

Author: kwm
Date: Fri Aug  9 07:48:26 2013
New Revision: 324418
URL: http://svnweb.freebsd.org/changeset/ports/324418

Log:
  Fix build on HEAD after recent commit to ld to make it stricter.
  
  While here update Makefile for new USES for gmake, pathfix and perl5.
  Bump portrevision since perl is only needed at build time.

Modified:
  head/www/evolution-webcal/Makefile

Modified: head/www/evolution-webcal/Makefile
==============================================================================
--- head/www/evolution-webcal/Makefile	Fri Aug  9 07:34:31 2013	(r324417)
+++ head/www/evolution-webcal/Makefile	Fri Aug  9 07:48:26 2013	(r324418)
@@ -1,14 +1,10 @@
-# New ports collection makefile for:	evolution-webcal
-# Date created:				Mon Apr 26 18:08:00 CEST 2004
-# Whom:					Koop Mast <kwm@rainbow-runner.nl>
-#
+# Created by: Koop Mast <kwm@rainbow-runner.nl>
 # $FreeBSD$
 #   $MCom: ports/www/evolution-webcal/Makefile,v 1.69 2010/09/29 12:56:07 kwm Exp $
-#
 
 PORTNAME=	evolution-webcal
 PORTVERSION=	2.32.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	www gnome
 MASTER_SITES=	GNOME
 DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
@@ -17,10 +13,9 @@ MAINTAINER=	gnome@FreeBSD.org
 COMMENT=	Webcal(endar) handler for gnome
 
 USE_BZIP2=	yes
-USE_GMAKE=	yes
-USES=		gettext
-USE_PERL5=	yes
-USE_GNOME=	gnomeprefix gnomehack intlhack evolutiondataserver libgnomeui
+USES=		gettext gmake pathfix perl5
+USE_PERL5=	build
+USE_GNOME=	gnomeprefix intlhack evolutiondataserver libgnomeui
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
@@ -30,5 +25,7 @@ GCONF_SCHEMAS=	evolution-webcal.schemas
 post-patch:
 	@${REINPLACE_CMD} -e 's|@mkdir_p@|mkdir -p|g' \
 		${WRKSRC}/po/Makefile.in.in
+	@${REINPLACE_CMD} -e 's|glib-2.0 >= 2.8|glib-2.0 >= 2.8 gthread-2.0|g' \
+		${WRKSRC}/configure
 
 .include <bsd.port.mk>