From owner-svn-ports-head@freebsd.org Mon Jul 23 14:25:06 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 EBE1B104C56E; Mon, 23 Jul 2018 14:25:05 +0000 (UTC) (envelope-from garga@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 8FE4F7E4BF; Mon, 23 Jul 2018 14:25:05 +0000 (UTC) (envelope-from garga@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 6B9451DB6D; Mon, 23 Jul 2018 14:25:05 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6NEP5Tb020317; Mon, 23 Jul 2018 14:25:05 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6NEP5EJ020316; Mon, 23 Jul 2018 14:25:05 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201807231425.w6NEP5EJ020316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Mon, 23 Jul 2018 14:25:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475177 - head/devel/libslang2 X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/devel/libslang2 X-SVN-Commit-Revision: 475177 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.27 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: Mon, 23 Jul 2018 14:25:06 -0000 Author: garga Date: Mon Jul 23 14:25:04 2018 New Revision: 475177 URL: https://svnweb.freebsd.org/changeset/ports/475177 Log: devel/libslang2: Add missing LDFLAGS Without linking libslang2.so.2.3.2 against libncurses a dependant binary is going to file with `Undefined symbol "tgetent"` error. PR: 229126 Submitted by: olevole@olevole.ru MFH: 2018Q3 Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/devel/libslang2/Makefile Modified: head/devel/libslang2/Makefile ============================================================================== --- head/devel/libslang2/Makefile Mon Jul 23 14:11:46 2018 (r475176) +++ head/devel/libslang2/Makefile Mon Jul 23 14:25:04 2018 (r475177) @@ -2,6 +2,7 @@ PORTNAME= libslang2 PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.jedsoft.org/releases/slang/ DISTNAME= slang-${PORTVERSION} @@ -13,13 +14,14 @@ LICENSE= GPLv2 CONFLICTS= libslang-1.*.j[0-9] -USES= tar:bzip2 +USES= ncurses tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes PLIST_SUB+= SHLIB_VERSION=${PORTVERSION} CONFIGURE_ARGS+=--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig +LDFLAGS+= -lncurses ALL_TARGET= all static INSTALL_TARGET= install install-static