From owner-svn-ports-head@freebsd.org Tue Jul 14 19:58:39 2020 Return-Path: Delivered-To: svn-ports-head@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 2916B36DB6A; Tue, 14 Jul 2020 19:58:39 +0000 (UTC) (envelope-from fox@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 4B5rtQ5Jglz4bV5; Tue, 14 Jul 2020 19:58:38 +0000 (UTC) (envelope-from fox@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 3A18FB987; Tue, 14 Jul 2020 19:58:38 +0000 (UTC) (envelope-from fox@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06EJwbTu072702; Tue, 14 Jul 2020 19:58:37 GMT (envelope-from fox@FreeBSD.org) Received: (from fox@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06EJwbXx072701; Tue, 14 Jul 2020 19:58:37 GMT (envelope-from fox@FreeBSD.org) Message-Id: <202007141958.06EJwbXx072701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fox set sender to fox@FreeBSD.org using -f From: Santhosh Raju Date: Tue, 14 Jul 2020 19:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542232 - head/irc/smuxi X-SVN-Group: ports-head X-SVN-Commit-Author: fox X-SVN-Commit-Paths: head/irc/smuxi X-SVN-Commit-Revision: 542232 X-SVN-Commit-Repository: ports 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.33 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: Tue, 14 Jul 2020 19:58:39 -0000 Author: fox Date: Tue Jul 14 19:58:37 2020 New Revision: 542232 URL: https://svnweb.freebsd.org/changeset/ports/542232 Log: irc/smuxi: Improves the options descriptions. Also some tidying up in the Makefile. Reviewed by: danfe Modified: head/irc/smuxi/Makefile Modified: head/irc/smuxi/Makefile ============================================================================== --- head/irc/smuxi/Makefile Tue Jul 14 18:40:41 2020 (r542231) +++ head/irc/smuxi/Makefile Tue Jul 14 19:58:37 2020 (r542232) @@ -1,3 +1,4 @@ +# Created by: Romain Tartiere # $FreeBSD$ PORTNAME= smuxi @@ -14,8 +15,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/log4net.pc:devel/log4net \ ${LOCALBASE}/libdata/pkgconfig/mono-addins.pc:devel/mono-addins \ ${LOCALBASE}/libdata/pkgconfig/nini-1.1.pc:devel/nini \ - intltool-update:textproc/intltool \ - bash:shells/bash + bash:shells/bash \ + intltool-update:textproc/intltool LIB_DEPENDS= libstfl.so:devel/stfl RUN_DEPENDS= mono-addins>0:devel/mono-addins @@ -25,23 +26,22 @@ USES= desktop-file-utils gettext-tools:build gmake gn USE_GNOME= gtksharp20 INSTALLS_ICONS= yes -OPTIONS_DEFINE= DBUS GTKSPELL NLS -OPTIONS_DEFAULT= DBUS GTKSPELL NLS -OPTIONS_SUB= yes +OPTIONS_DEFINE= DBUS NLS SPELLCHECK +OPTIONS_DEFAULT= DBUS NLS SPELLCHECK +oOPTIONS_SUB= yes -DBUS_DESC= Build with DBUS support -GTKSPELL_DESC= Support spell checking -NLS_DESC= Build with NLS support +SPELLCHECK_DESC= Spell checking support via GtkSpell DBUS_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/ndesk-dbus-1.0.pc:devel/ndesk-dbus \ ${LOCALBASE}/libdata/pkgconfig/ndesk-dbus-glib-1.0.pc:devel/ndesk-dbus-glib -GTKSPELL_LIB_DEPENDS= libgtkspell.so:textproc/gtkspell +SPELLCHECK_LIB_DEPENDS= libgtkspell.so:textproc/gtkspell NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls CONFIGURE_SHELL= "env ${LOCALBASE}/bin/bash" +# Fails due to build order dependency issue. MAKE_JOBS_UNSAFE= yes .include