From owner-svn-ports-all@freebsd.org Fri Apr 6 14:54:31 2018 Return-Path: Delivered-To: svn-ports-all@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 E8977F8BC70; Fri, 6 Apr 2018 14:54:30 +0000 (UTC) (envelope-from ashish@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 8F5C97F608; Fri, 6 Apr 2018 14:54:30 +0000 (UTC) (envelope-from ashish@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 8A2C213425; Fri, 6 Apr 2018 14:54:30 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w36EsUBc084246; Fri, 6 Apr 2018 14:54:30 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w36EsUhV084242; Fri, 6 Apr 2018 14:54:30 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <201804061454.w36EsUhV084242@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Fri, 6 Apr 2018 14:54:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466644 - in head/graphics/frogr: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ashish X-SVN-Commit-Paths: in head/graphics/frogr: . files X-SVN-Commit-Revision: 466644 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.25 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: Fri, 06 Apr 2018 14:54:31 -0000 Author: ashish Date: Fri Apr 6 14:54:29 2018 New Revision: 466644 URL: https://svnweb.freebsd.org/changeset/ports/466644 Log: - Update to 1.4 - Switch to meson, ninja - Add a diff to fix detection of libgcrypt during configure. Reported upstream as: https://bugzilla.gnome.org/show_bug.cgi?id=795033 Added: head/graphics/frogr/files/ head/graphics/frogr/files/patch-meson.build (contents, props changed) Modified: head/graphics/frogr/Makefile head/graphics/frogr/distinfo head/graphics/frogr/pkg-plist Modified: head/graphics/frogr/Makefile ============================================================================== --- head/graphics/frogr/Makefile Fri Apr 6 14:10:26 2018 (r466643) +++ head/graphics/frogr/Makefile Fri Apr 6 14:54:29 2018 (r466644) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= frogr -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= graphics MASTER_SITES= GNOME @@ -18,17 +18,19 @@ LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ libjson-glib-1.0.so:devel/json-glib \ libgcrypt.so:security/libgcrypt -USES= gmake tar:xz pkgconfig gettext-runtime gettext-tools +USES= meson ninja tar:xz pkgconfig gettext-runtime gettext-tools USE_GNOME= libxml2 glib20 gtk30 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-header-bar +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +MESON_ARGS= -Denable-header-bar=true INSTALLS_ICONS= yes OPTIONS_DEFINE= VIDEO OPTIONS_DEFAULT= VIDEO -VIDEO_CONFIGURE_ENABLE= video +VIDEO_MESON_TRUE= enable-video VIDEO_LIB_DEPENDS= libgstreamer-1.0.so:multimedia/gstreamer1 .include Modified: head/graphics/frogr/distinfo ============================================================================== --- head/graphics/frogr/distinfo Fri Apr 6 14:10:26 2018 (r466643) +++ head/graphics/frogr/distinfo Fri Apr 6 14:54:29 2018 (r466644) @@ -1,3 +1,3 @@ -TIMESTAMP = 1509853555 -SHA256 (frogr-1.3.tar.xz) = 94cc6a7ab2553e00cc8e0c2435a1c2610de0fc59ce51e78fe0d758f34d5c7a36 -SIZE (frogr-1.3.tar.xz) = 2552456 +TIMESTAMP = 1523024048 +SHA256 (frogr-1.4.tar.xz) = ace4c9e60364fa5e183384a3e25a0c4ee77c77c59f4bb33f8980ba57317ae68e +SIZE (frogr-1.4.tar.xz) = 2225148 Added: head/graphics/frogr/files/patch-meson.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/frogr/files/patch-meson.build Fri Apr 6 14:54:29 2018 (r466644) @@ -0,0 +1,11 @@ +--- meson.build.orig 2017-12-27 23:11:19 UTC ++++ meson.build +@@ -42,7 +42,7 @@ json_glib = dependency('json-glib-1.0', + gcrypt = dependency('libgcrypt', version: '>=@0@'.format(gcrypt_ver), required: false) + if not gcrypt.found() + message('gcrypt not found via pkg-config, using meson.find_library()...') +- gcrypt = compiler.find_library('libgcrypt') ++ gcrypt = compiler.find_library('gcrypt') + endif + + frogr_conf.set_quoted('LIBGCRYPT_MIN_VERSION', gcrypt_ver) Modified: head/graphics/frogr/pkg-plist ============================================================================== --- head/graphics/frogr/pkg-plist Fri Apr 6 14:10:26 2018 (r466643) +++ head/graphics/frogr/pkg-plist Fri Apr 6 14:54:29 2018 (r466644) @@ -360,4 +360,3 @@ share/locale/te/LC_MESSAGES/frogr.mo share/locale/tr/LC_MESSAGES/frogr.mo share/locale/uk/LC_MESSAGES/frogr.mo share/locale/zh_CN/LC_MESSAGES/frogr.mo -share/pixmaps/frogr.xpm