Date: Mon, 26 Oct 2020 08:23:19 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553323 - head/lang/clisp Message-ID: <202010260823.09Q8NJjN080534@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Mon Oct 26 08:23:18 2020 New Revision: 553323 URL: https://svnweb.freebsd.org/changeset/ports/553323 Log: Correct dependency on `devel/libffcall': clisp(1) actually links to `libffcall.so.0' shared library, and will not run if it is missing. PR: 241505 Modified: head/lang/clisp/Makefile Modified: head/lang/clisp/Makefile ============================================================================== --- head/lang/clisp/Makefile Mon Oct 26 07:13:56 2020 (r553322) +++ head/lang/clisp/Makefile Mon Oct 26 08:23:18 2020 (r553323) @@ -3,7 +3,7 @@ PORTNAME= clisp PORTVERSION= 2.49.93+ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang lisp MAINTAINER= kiri@TrueFC.org @@ -15,8 +15,8 @@ LICENSE_FILE= ${WRKSRC}/GNU-GPL BROKEN_powerpc= Does not compile BROKEN_sparc64= Does not compile -BUILD_DEPENDS= ${LOCALBASE}/lib/libavcall.a:devel/libffcall -LIB_DEPENDS= libreadline.so:devel/readline \ +LIB_DEPENDS= libffcall.so:devel/libffcall \ + libreadline.so:devel/readline \ libsigsegv.so:devel/libsigsegv USES= compiler gettext ghostscript gnome iconv localbase:ldflags
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010260823.09Q8NJjN080534>