diff options
author | adridg <adridg@FreeBSD.org> | 2019-02-19 17:22:58 +0800 |
---|---|---|
committer | adridg <adridg@FreeBSD.org> | 2019-02-19 17:22:58 +0800 |
commit | 3469fb45ef7a5dc876ab2f7a98a800cb5b98897f (patch) | |
tree | e51b34123e2f9102ad2478d663fa30e812668672 /cad | |
parent | 59b8afc5ab891fc3a3737f2ce8c65d7f9c30363a (diff) | |
download | freebsd-ports-gnome-3469fb45ef7a5dc876ab2f7a98a800cb5b98897f.tar.gz freebsd-ports-gnome-3469fb45ef7a5dc876ab2f7a98a800cb5b98897f.tar.zst freebsd-ports-gnome-3469fb45ef7a5dc876ab2f7a98a800cb5b98897f.zip |
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
Diffstat (limited to 'cad')
-rw-r--r-- | cad/astk-serveur/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cad/astk-serveur/Makefile b/cad/astk-serveur/Makefile index 1081eb6bbc89..43757b725aeb 100644 --- a/cad/astk-serveur/Makefile +++ b/cad/astk-serveur/Makefile @@ -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 |