From owner-freebsd-ports-bugs@freebsd.org Mon Oct 12 14:01:42 2020 Return-Path: Delivered-To: freebsd-ports-bugs@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 4964F438850 for ; Mon, 12 Oct 2020 14:01:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4C90j21K0dz4GVR for ; Mon, 12 Oct 2020 14:01:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 2D20A438C1A; Mon, 12 Oct 2020 14:01:42 +0000 (UTC) Delivered-To: ports-bugs@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 2CEB543884F for ; Mon, 12 Oct 2020 14:01:42 +0000 (UTC) (envelope-from bugzilla-noreply@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4C90j20VXhz4G4v for ; Mon, 12 Oct 2020 14:01:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E9D83DBBC for ; Mon, 12 Oct 2020 14:01:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 09CE1fmf026289 for ; Mon, 12 Oct 2020 14:01:41 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 09CE1ftp026288 for ports-bugs@FreeBSD.org; Mon, 12 Oct 2020 14:01:41 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 250266] [NEW PORT] www/castor: Graphical browser for text-based inet protocols Date: Mon, 12 Oct 2020 14:01:41 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kevans@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kevans@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Oct 2020 14:01:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D250266 --- Comment #2 from Kyle Evans --- A `poudriere testport` offered the following complaints: > Using USE_GNOME alone is deprecated, please add USES=3Dgnome. > Error: /usr/local/bin/castor is linked to /usr/local/lib/libcairo-gobject= .so.2 from graphics/cairo but it is not declared as a dependency > Warning: you need USE_GNOME+=3Dcairo > Error: /usr/local/bin/castor is linked to /usr/local/lib/libcairo.so.2 fr= om graphics/cairo but it is not declared as a dependency > Warning: you need USE_GNOME+=3Dcairo > Error: /usr/local/bin/castor is linked to /usr/local/lib/libgdk_pixbuf-2.= 0.so.0 from graphics/gdk-pixbuf2 but it is not declared as a dependency > Warning: you need USE_GNOME+=3Dgdkpixbuf2 I confirmed with [0] that it does formally depend on cairo and gdkpixbuf2, applied the following diff, and I'm re-confirming the build on 11/amd64 and 12/i386: root@viper:/usr/local/poudriere/ports/default/www/castor# diff Makefile.orig Makefile 15,16c15,16 < USES=3D cargo desktop-file-utils ssl < USE_GNOME=3D glib20 gtk30 --- > USES=3D cargo desktop-file-utils gnome ssl > USE_GNOME=3D cairo gdkpixbuf2 glib20 gtk30 [0] https://git.sr.ht/~julienxx/castor/tree/master/README.md --=20 You are receiving this mail because: You are on the CC list for the bug.=