From owner-svn-ports-all@freebsd.org Wed Oct 23 15:41:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 98E7F1565DE; Wed, 23 Oct 2019 15:41:48 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46yvkN3VYfz4H3r; Wed, 23 Oct 2019 15:41:48 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5BF2926B50; Wed, 23 Oct 2019 15:41:48 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9NFfmDq092244; Wed, 23 Oct 2019 15:41:48 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9NFfmhj092243; Wed, 23 Oct 2019 15:41:48 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201910231541.x9NFfmhj092243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Wed, 23 Oct 2019 15:41:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515268 - head/x11-wm/fluxconf X-SVN-Group: ports-head X-SVN-Commit-Author: jgh X-SVN-Commit-Paths: head/x11-wm/fluxconf X-SVN-Commit-Revision: 515268 X-SVN-Commit-Repository: ports 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.29 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: Wed, 23 Oct 2019 15:41:48 -0000 Author: jgh Date: Wed Oct 23 15:41:47 2019 New Revision: 515268 URL: https://svnweb.freebsd.org/changeset/ports/515268 Log: - fully support NLS - add missing library dependencies - trim installing release-based untracked Makefiles as documentation - pet portlint PR: 241060 Submitted by: jgh@ Approved by: maintainer-timeout Modified: head/x11-wm/fluxconf/Makefile Modified: head/x11-wm/fluxconf/Makefile ============================================================================== --- head/x11-wm/fluxconf/Makefile Wed Oct 23 15:37:35 2019 (r515267) +++ head/x11-wm/fluxconf/Makefile Wed Oct 23 15:41:47 2019 (r515268) @@ -3,7 +3,7 @@ PORTNAME= fluxconf PORTVERSION= 0.9.9 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11-wm MASTER_SITES= http://devaux.fabien.free.fr/flux/ @@ -13,20 +13,28 @@ COMMENT= Fluxbox window manager configuration program LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= pkgconfig -USE_GNOME= gtk20 +USES= gnome pkgconfig + +USE_GNOME= cairo gdkpixbuf2 gtk20 GNU_CONFIGURE= yes CFLAGS+= -Wno-error +LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 PORTDOCS= fluxconf.png fluxkeys.png fluxmenu.png index.html -PLIST_FILES= bin/fluxbare bin/fluxconf bin/fluxkeys bin/fluxmenu \ - share/locale/fi/LC_MESSAGES/fluxconf.mo \ - share/locale/fr/LC_MESSAGES/fluxconf.mo +PLIST_FILES= bin/fluxbare bin/fluxconf bin/fluxkeys bin/fluxmenu -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS NLS +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls +NLS_PLIST_FILES= share/locale/fi/LC_MESSAGES/fluxconf.mo \ + share/locale/fr/LC_MESSAGES/fluxconf.mo + post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${STAGEDIR}${DOCSDIR} +.for doc in fluxconf.png fluxkeys.png fluxmenu.png index.html + ${INSTALL_DATA} ${WRKSRC}/docs/${doc} ${STAGEDIR}${DOCSDIR} +.endfor .include