Date: Tue, 19 Feb 2019 09:22:59 +0000 (UTC) From: Adriaan de Groot <adridg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493358 - head/cad/astk-serveur Message-ID: <201902190922.x1J9MxcV031808@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adridg Date: Tue Feb 19 09:22:58 2019 New Revision: 493358 URL: https://svnweb.freebsd.org/changeset/ports/493358 Log: Fix RUN_DEPENDS. This is an obscure case: if you have kwrite installed, then editors/kate-kde4 was assumed as a RUN_DEPENDS. That port no longer exists, and kwrite is provided by editors/kate -- as a KF5-based application. There's no good way to say "whatever package provided that installed file", though. Reported by: arrowd Modified: head/cad/astk-serveur/Makefile Modified: head/cad/astk-serveur/Makefile ============================================================================== --- head/cad/astk-serveur/Makefile Tue Feb 19 09:09:22 2019 (r493357) +++ head/cad/astk-serveur/Makefile Tue Feb 19 09:22:58 2019 (r493358) @@ -140,7 +140,7 @@ WITH_ED= gedit RUN_DEPENDS+= ${LOCALBASE}/bin/gedit:editors/gedit . elif exists(${LOCALBASE}/bin/kwrite) WITH_ED= kwrite -RUN_DEPENDS+= ${LOCALBASE}/bin/kwrite:editors/kate-kde4 +RUN_DEPENDS+= ${LOCALBASE}/bin/kwrite:editors/kate . elif exists(${LOCALBASE}/bin/xedit) WITH_ED= xedit RUN_DEPENDS+= ${LOCALBASE}/bin/xedit:x11/xedit
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902190922.x1J9MxcV031808>