From owner-svn-ports-head@freebsd.org Sun Dec 9 14:56:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AAA91323E37; Sun, 9 Dec 2018 14:56:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B78F76E39C; Sun, 9 Dec 2018 14:56:28 +0000 (UTC) (envelope-from tobik@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 9A1DF12C84; Sun, 9 Dec 2018 14:56:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB9EuSlM018412; Sun, 9 Dec 2018 14:56:28 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB9EuRgA018408; Sun, 9 Dec 2018 14:56:27 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201812091456.wB9EuRgA018408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 9 Dec 2018 14:56:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487052 - head/sysutils/nitrogen X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/sysutils/nitrogen X-SVN-Commit-Revision: 487052 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B78F76E39C X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-0.99)[-0.991,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 09 Dec 2018 14:56:29 -0000 Author: tobik Date: Sun Dec 9 14:56:27 2018 New Revision: 487052 URL: https://svnweb.freebsd.org/changeset/ports/487052 Log: sysutils/nitrogen: Update to 1.6.1 - Move to new home on GitHub - Add LICENSE - Switch to options helpers - Reset maintainer due to the long timeout Changes: https://github.com/l3ib/nitrogen/blob/1.6.1/ChangeLog PR: 230206 Submitted by: Nathan (based on) Approved by: corentin@ralite.com (maintainer timeout, 4 months) Modified: head/sysutils/nitrogen/Makefile head/sysutils/nitrogen/distinfo head/sysutils/nitrogen/pkg-descr head/sysutils/nitrogen/pkg-plist Modified: head/sysutils/nitrogen/Makefile ============================================================================== --- head/sysutils/nitrogen/Makefile Sun Dec 9 14:53:56 2018 (r487051) +++ head/sysutils/nitrogen/Makefile Sun Dec 9 14:56:27 2018 (r487052) @@ -2,45 +2,38 @@ # $FreeBSD$ PORTNAME= nitrogen -PORTVERSION= 1.5.2 -PORTREVISION= 9 +DISTVERSION= 1.6.1 CATEGORIES= sysutils -MASTER_SITES= http://projects.l3ib.org/nitrogen/files/ +MASTER_SITES= https://github.com/l3ib/nitrogen/releases/download/${DISTVERSION}/ -MAINTAINER= corentin@ralite.com +MAINTAINER= ports@FreeBSD.org COMMENT= Background browser and setter for X windows LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= bash:shells/bash +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 RUN_DEPENDS= gnome-icon-theme>0:misc/gnome-icon-theme \ hicolor-icon-theme>0:misc/hicolor-icon-theme -OPTIONS_DEFINE= XINERAMA -OPTIONS_DEFAULT=XINERAMA - -USES= compiler:c++11-lang gettext iconv pkgconfig +USES= compiler:c++11-lang gettext gmake gnome iconv localbase pkgconfig USE_CXXSTD= c++11 USE_GNOME= gtkmm24 +INSTALLS_ICONS= yes USE_XORG= x11 + GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-inotify -INSTALLS_ICONS= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lX11 +LIBS+= -lX11 -DESKTOP_ENTRIES="Nitrogen" "${COMMENT}" "${PORTNAME}" "${PORTNAME}" \ - "Graphics;Viewer;" true +OPTIONS_DEFINE= XINERAMA +OPTIONS_DEFAULT= XINERAMA -.include - -.if ${PORT_OPTIONS:MXINERAMA} -USE_XORG+= xinerama -CONFIGURE_ARGS+=--enable-xinerama -.else -CONFIGURE_ARGS+=--disable-xinerama -.endif +XINERAMA_CONFIGURE_ENABLE= xinerama +XINERAMA_USE= xorg=xinerama post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ Modified: head/sysutils/nitrogen/distinfo ============================================================================== --- head/sysutils/nitrogen/distinfo Sun Dec 9 14:53:56 2018 (r487051) +++ head/sysutils/nitrogen/distinfo Sun Dec 9 14:56:27 2018 (r487052) @@ -1,2 +1,3 @@ -SHA256 (nitrogen-1.5.2.tar.gz) = 60a2437ce6a6c0ba44505fc8066c1973140d4bb48e1e5649f525c7b0b8bf9fd2 -SIZE (nitrogen-1.5.2.tar.gz) = 307356 +TIMESTAMP = 1544343577 +SHA256 (nitrogen-1.6.1.tar.gz) = f40213707b7a3be87e556f65521cef8795bd91afda13dfac8f00c3550375837d +SIZE (nitrogen-1.6.1.tar.gz) = 314332 Modified: head/sysutils/nitrogen/pkg-descr ============================================================================== --- head/sysutils/nitrogen/pkg-descr Sun Dec 9 14:53:56 2018 (r487051) +++ head/sysutils/nitrogen/pkg-descr Sun Dec 9 14:56:27 2018 (r487052) @@ -1,4 +1,4 @@ Nitrogen is a background browser and setter for X windows. It is written in C++ using the gtkmm toolkit. -WWW: http://projects.l3ib.org/nitrogen +WWW: https://github.com/l3ib/nitrogen Modified: head/sysutils/nitrogen/pkg-plist ============================================================================== --- head/sysutils/nitrogen/pkg-plist Sun Dec 9 14:53:56 2018 (r487051) +++ head/sysutils/nitrogen/pkg-plist Sun Dec 9 14:56:27 2018 (r487052) @@ -1,5 +1,7 @@ bin/nitrogen man/man1/nitrogen.1.gz +share/appdata/nitrogen.appdata.xml +share/applications/nitrogen.desktop share/icons/hicolor/128x128/apps/nitrogen.png share/icons/hicolor/16x16/actions/wallpaper-centered.png share/icons/hicolor/16x16/actions/wallpaper-scaled.png @@ -11,3 +13,9 @@ share/icons/hicolor/16x16/mimetypes/image-x-generic.pn share/icons/hicolor/22x22/apps/nitrogen.png share/icons/hicolor/32x32/apps/nitrogen.png share/icons/hicolor/48x48/apps/nitrogen.png +share/locale/bs/LC_MESSAGES/nitrogen.mo +share/locale/fi/LC_MESSAGES/nitrogen.mo +share/locale/hr/LC_MESSAGES/nitrogen.mo +share/locale/pl/LC_MESSAGES/nitrogen.mo +share/locale/ru/LC_MESSAGES/nitrogen.mo +share/locale/sr/LC_MESSAGES/nitrogen.mo