svn commit: r553323 - head/lang/clisp

Alexey Dokuchaev danfe at FreeBSD.org
Mon Oct 26 08:23:19 UTC 2020


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 at 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


More information about the svn-ports-head mailing list