From owner-svn-ports-head@FreeBSD.ORG Tue Jan 28 08:34:58 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 9F4E9DA6; Tue, 28 Jan 2014 08:34:58 +0000 (UTC) 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 727A514E9; Tue, 28 Jan 2014 08:34:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0S8Ywuc075076; Tue, 28 Jan 2014 08:34:58 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0S8Yw6L075075; Tue, 28 Jan 2014 08:34:58 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401280834.s0S8Yw6L075075@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 28 Jan 2014 08:34:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341514 - head/x11-toolkits/gnustep-back X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 28 Jan 2014 08:34:58 -0000 Author: bapt Date: Tue Jan 28 08:34:57 2014 New Revision: 341514 URL: http://svnweb.freebsd.org/changeset/ports/341514 QAT: https://qat.redports.org/buildarchive/r341514/ Log: Support stage Use modern LIB_DEPENDS A bit of cosmetic changes Modified: head/x11-toolkits/gnustep-back/Makefile Modified: head/x11-toolkits/gnustep-back/Makefile ============================================================================== --- head/x11-toolkits/gnustep-back/Makefile Tue Jan 28 08:31:56 2014 (r341513) +++ head/x11-toolkits/gnustep-back/Makefile Tue Jan 28 08:34:57 2014 (r341514) @@ -11,23 +11,27 @@ PKGNAMESUFFIX?= ${BACK_SUFFIX}${PKGNAMES MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep GUI backend -LIB_DEPENDS+= gif.5:${PORTSDIR}/graphics/giflib -LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg -LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff -LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft -LIB_DEPENDS+= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 - LICENSE_COMB= multi LICENSE= GPLv3 LGPL3 +LIB_DEPENDS+= libgif.so:${PORTSDIR}/graphics/giflib \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libXft.so:${PORTSDIR}/x11-fonts/libXft \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libcairo.so:${PORTSDIR}/graphics/cairo + GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-tiff-library=${LOCALBASE}/lib -CONFIGURE_ARGS+= --with-tiff-include=${LOCALBASE}/include -CONFIGURE_ARGS+= --with-jpeg-library=${LOCALBASE}/lib -CONFIGURE_ARGS+= --with-jpeg-include=${LOCALBASE}/include -CONFIGURE_ARGS+= --with-gif-library=${LOCALBASE}/lib -CONFIGURE_ARGS+= --with-gif-include=${LOCALBASE}/include +CONFIGURE_ARGS= --with-tiff-library=${LOCALBASE}/lib \ + --with-tiff-include=${LOCALBASE}/include \ + --with-jpeg-library=${LOCALBASE}/lib \ + --with-jpeg-include=${LOCALBASE}/include \ + --with-gif-library=${LOCALBASE}/lib \ + --with-gif-include=${LOCALBASE}/include \ + --enable-graphics=cairo \ + --disable-glitz + USES= pkgconfig USE_GNUSTEP= yes USE_GNUSTEP_GUI= yes @@ -43,14 +47,8 @@ BACKVERSION= ${PORTVERSION:C/([0-9])*[. BREAKS_IF_PEDANTIC= yes CFLAGS+= -I${LOCALBASE}/include/freetype2 -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 -LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo -CONFIGURE_ARGS+= --enable-graphics=cairo -CONFIGURE_ARGS+= --disable-glitz PLIST_SUB+= BACK=back-${BACKVERSION} -.include - PLIST_SUB+= BACKVERSION=${PORTVERSION:C/([0-9])*[.]([0-9]*).*/\1\2/1} pre-configure: @@ -58,4 +56,4 @@ pre-configure: @${CP} ${GNUSTEP_PREFIX}/System/Library/Makefiles/${file} ${WRKSRC} .endfor -.include +.include