svn commit: r493358 - head/cad/astk-serveur

Adriaan de Groot adridg at FreeBSD.org
Tue Feb 19 09:23:00 UTC 2019


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


More information about the svn-ports-head mailing list