From owner-svn-ports-all@FreeBSD.ORG Sat Jun 8 06:10:01 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 334E62D9 for ; Sat, 8 Jun 2013 06:10:01 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-ve0-x230.google.com (mail-ve0-x230.google.com [IPv6:2607:f8b0:400c:c01::230]) by mx1.freebsd.org (Postfix) with ESMTP id E4983169A for ; Sat, 8 Jun 2013 06:10:00 +0000 (UTC) Received: by mail-ve0-f176.google.com with SMTP id c13so3527783vea.7 for ; Fri, 07 Jun 2013 23:09:59 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=/a/P/TDVc6l8VasFfW/iZhIDlBMwNrdLBds/QJZvLXs=; b=n9CpJoSRzY/HkbTQkSJPliZJAClOXCRdrn6tfuFflBiPtAazKfOTlKqdFAriPMsTOj F2AHiicgwyp0xzSdi29m/PfhPWTDkAZv1+gyLFEvxOl9AxU4kO5JtROlc8k1ANRo95kw 8zwNYkmyQ6HUEYZ+hMoDuakAFYoCIQpZEKYZ0sACFxn4/x0NBSSXsiB+biiWbgFBC1jx xvdJuD9KyP+jC3nj4wcZbpXV4Sbp2QJw1GW/GUbt9JI2XwQXKEPQ8MMQR7C3nW1vWaq0 d6+h37kUIHoi6zw5p7zoPEM20DMGE8kYF7Uo4hyIq5eZLONbNKyh6tOmGtzCS6zdsdwi hA8Q== MIME-Version: 1.0 X-Received: by 10.220.112.76 with SMTP id v12mr822498vcp.63.1370671799334; Fri, 07 Jun 2013 23:09:59 -0700 (PDT) Sender: bsd-src@helfman.org Received: by 10.58.237.100 with HTTP; Fri, 7 Jun 2013 23:09:59 -0700 (PDT) In-Reply-To: <201306080558.r585wjEp024280@svn.freebsd.org> References: <201306080558.r585wjEp024280@svn.freebsd.org> Date: Fri, 7 Jun 2013 23:09:59 -0700 X-Google-Sender-Auth: zHSQBPoY4-J8RvPfk15AkswxIs4 Message-ID: Subject: Re: svn commit: r320235 - head/devel/ncurses From: Jason Helfman To: Rong-En Fan X-Gm-Message-State: ALoCoQmC2dKe3GcArkSpTY5ynKw/x7VCkyjohdzd2PVp0eMMltMr8aGWtRip+8xkQXQchzEvb2Qa Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Jun 2013 06:10:01 -0000 Shouldn't this be using our new Uses framework? USES= pkgconfig and not USE_GNOME= pkgconfig Thanks! -jgh On Fri, Jun 7, 2013 at 10:58 PM, Rong-En Fan wrote: > Author: rafan > Date: Sat Jun 8 05:58:44 2013 > New Revision: 320235 > URL: http://svnweb.freebsd.org/changeset/ports/320235 > > Log: > - Install pkg-config files to support static linking > - Bump PORTREVISION > > PR: ports/179005, ports/160695 > > Modified: > head/devel/ncurses/Makefile > head/devel/ncurses/pkg-plist > > Modified: head/devel/ncurses/Makefile > > ============================================================================== > --- head/devel/ncurses/Makefile Sat Jun 8 02:30:13 2013 (r320234) > +++ head/devel/ncurses/Makefile Sat Jun 8 05:58:44 2013 (r320235) > @@ -3,7 +3,7 @@ > > PORTNAME= ncurses > PORTVERSION= ${RELEASE} > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= devel > MASTER_SITES= ${MASTER_SITE_GNU} > MASTER_SITE_SUBDIR= ${PORTNAME} > @@ -21,7 +21,7 @@ CONFIGURE_SCRIPT=../configure > CONFIGURE_ARGS= --datadir=${PREFIX}/share/misc --disable-overwrite > \ > --enable-termcap --enable-bsdpad --enable-getcap \ > --enable-colorfgbg --disable-home-terminfo \ > - --with-pkg-config=no \ > + --with-pkg-config=yes --enable-pc-files \ > --includedir=${PREFIX}/include/ncurses \ > --with-shared \ > --without-curses-h --with-termlib --program-prefix= \ > @@ -33,9 +33,11 @@ OPTIONS_DEFINE= EXTCOLORS TRACE DEBUG > EXTCOLORS_DESC= 256-color support (only for ncursesw) > TRACE_DESC= Add trace() function to all models of ncurses > > -CONFIGURE_ENV= gnat_exists="no" > +CONFIGURE_ENV= PKG_CONFIG_LIBDIR=${LOCALBASE}/libdata/pkgconfig \ > + gnat_exists="no" > > USE_LDCONFIG= yes > +USE_GNOME= pkgconfig > > WIDEC_WRKSRC= ${WRKSRC}/build.widec > NOWIDEC_WRKSRC= ${WRKSRC}/build.nowidec > > Modified: head/devel/ncurses/pkg-plist > > ============================================================================== > --- head/devel/ncurses/pkg-plist Sat Jun 8 02:30:13 2013 > (r320234) > +++ head/devel/ncurses/pkg-plist Sat Jun 8 05:58:44 2013 > (r320235) > @@ -91,6 +91,28 @@ lib/libtinfo.so.%%REL_VER%% > %%WIDEC%%lib/libtinfow.so.%%REL_VER_WIDEC%% > %%WIDEC%%%%DEBUG%%lib/libtinfow_g.a > %%WIDEC%%%%PROFILE%%lib/libtinfow_p.a > +libdata/pkgconfig/form.pc > +%%DEBUG%%libdata/pkgconfig/form_g.pc > +%%PROFILE%%libdata/pkgconfig/form_p.pc > +%%WIDEC%%libdata/pkgconfig/formw.pc > +libdata/pkgconfig/menu.pc > +%%DEBUG%%libdata/pkgconfig/menu_g.pc > +%%PROFILE%%libdata/pkgconfig/menu_p.pc > +%%WIDEC%%libdata/pkgconfig/menuw.pc > +libdata/pkgconfig/ncurses++.pc > +%%WIDEC%%libdata/pkgconfig/ncurses++w.pc > +libdata/pkgconfig/ncurses.pc > +%%DEBUG%%libdata/pkgconfig/ncurses_g.pc > +%%PROFILE%%libdata/pkgconfig/ncurses_p.pc > +%%WIDEC%%libdata/pkgconfig/ncursesw.pc > +libdata/pkgconfig/panel.pc > +%%DEBUG%%libdata/pkgconfig/panel_g.pc > +%%PROFILE%%libdata/pkgconfig/panel_p.pc > +%%WIDEC%%libdata/pkgconfig/panelw.pc > +libdata/pkgconfig/tinfo.pc > +%%DEBUG%%libdata/pkgconfig/tinfo_g.pc > +%%PROFILE%%libdata/pkgconfig/tinfo_p.pc > +%%WIDEC%%libdata/pkgconfig/tinfow.pc > %%TERMINFO%%share/misc/tabset/std > %%TERMINFO%%share/misc/tabset/stdcrt > %%TERMINFO%%share/misc/tabset/vt100 > _______________________________________________ > svn-ports-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" > -- -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve