From owner-svn-ports-head@FreeBSD.ORG Wed Aug 6 09:11:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF892A2D for ; Wed, 6 Aug 2014 09:11:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9571B2926 for ; Wed, 6 Aug 2014 09:11:11 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 58c0 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Wed, 06 Aug 2014 09:11:11 +0000 From: Tijl Coosemans Date: Wed, 6 Aug 2014 09:11:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364157 - in head/devel/libconfuse: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e1f12f.58c0.697188c4@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2014 09:11:11 -0000 Author: tijl Date: Wed Aug 6 09:11:11 2014 New Revision: 364157 URL: http://svnweb.freebsd.org/changeset/ports/364157 QAT: https://qat.redports.org/buildarchive/r364157/ Log: - Remove optional libcheck dependency; there's no reference to it anywhere - Replace a patch with CONFIGURE_ARGS=--enable-shared - White space fixes Deleted: head/devel/libconfuse/files/ Modified: head/devel/libconfuse/Makefile Modified: head/devel/libconfuse/Makefile ============================================================================== --- head/devel/libconfuse/Makefile Wed Aug 6 08:39:10 2014 (r364156) +++ head/devel/libconfuse/Makefile Wed Aug 6 09:11:11 2014 (r364157) @@ -5,8 +5,7 @@ PORTNAME= libconfuse PORTVERSION= 2.7 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= SAVANNAH -MASTER_SITE_SUBDIR= confuse +MASTER_SITES= SAVANNAH/confuse DISTNAME= confuse-${PORTVERSION} MAINTAINER= otis@freebsd.sk @@ -14,19 +13,10 @@ COMMENT= Configuration file parsing libr LICENSE= ISCL -.if defined(WITH_CHECK) -LIB_DEPENDS+= ${LOCALBASE}/lib/libcheck.a:${PORTSDIR}/devel/libcheck -.endif - -USES= iconv pathfix pkgconfig libtool -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS+= --disable-nls -CFLAGS+= -I${WRKSRC}/src -.if defined(WITH_CHECK) -CONFIGURE_ARGS+= --with-check=${LOCALBASE} -CFLAGS+= -I${LOCALBASE}/include -.endif -INSTALL_TARGET= install-strip +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-nls --enable-shared +INSTALL_TARGET= install-strip +USES= iconv pathfix pkgconfig libtool +USE_LDCONFIG= yes .include