From owner-svn-ports-head@FreeBSD.ORG Wed Nov 20 16:37:00 2013 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 E39AEA08; Wed, 20 Nov 2013 16:37:00 +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 D2C042800; Wed, 20 Nov 2013 16:37:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAKGb0Ut072074; Wed, 20 Nov 2013 16:37:00 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAKGb0m9072072; Wed, 20 Nov 2013 16:37:00 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201311201637.rAKGb0m9072072@svn.freebsd.org> From: Koop Mast Date: Wed, 20 Nov 2013 16:37:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334429 - head/x11-toolkits/libgnomeui 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.16 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, 20 Nov 2013 16:37:01 -0000 Author: kwm Date: Wed Nov 20 16:37:00 2013 New Revision: 334429 URL: http://svnweb.freebsd.org/changeset/ports/334429 Log: Fix libgnome-keyring dependancy. gnome-keyring2 doesn't include libgnome-keyring. While here update LIB_DEPENDS syntax, stageify. Reported by: poudriere via swills@ Modified: head/x11-toolkits/libgnomeui/Makefile Modified: head/x11-toolkits/libgnomeui/Makefile ============================================================================== --- head/x11-toolkits/libgnomeui/Makefile Wed Nov 20 16:22:08 2013 (r334428) +++ head/x11-toolkits/libgnomeui/Makefile Wed Nov 20 16:37:00 2013 (r334429) @@ -4,7 +4,7 @@ PORTNAME= libgnomeui PORTVERSION= 2.24.4 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -16,8 +16,8 @@ USE_BZIP2= yes .if !defined(REFERENCE_PORT) -LIB_DEPENDS+= gnome-keyring.0:${PORTSDIR}/security/gnome-keyring \ - startup-notification-1.0:${PORTSDIR}/x11/startup-notification +LIB_DEPENDS+= libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring \ + libstartup-notification-1.so:${PORTSDIR}/x11/startup-notification RUN_DEPENDS= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme USE_XORG= sm @@ -25,12 +25,15 @@ USES= bison pathfix gettext gmake pkgco USE_GNOME= gnomeprefix gnomehier libbonoboui ltverhack \ referencehack gvfs USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool +GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgnomeui-2.so.0 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libglade/2.0/libgnome.so -NO_STAGE= yes .include .endif