diff options
author | novel <novel@FreeBSD.org> | 2005-05-11 20:09:48 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2005-05-11 20:09:48 +0800 |
commit | c02dd34cbcc50dc029bd6a70002963274907d7df (patch) | |
tree | b741f490c2b1061820678184a5138ff40f7a4570 | |
parent | 8ded499513679592701d2cac11424c4e76c14684 (diff) | |
download | freebsd-ports-gnome-c02dd34cbcc50dc029bd6a70002963274907d7df.tar.gz freebsd-ports-gnome-c02dd34cbcc50dc029bd6a70002963274907d7df.tar.zst freebsd-ports-gnome-c02dd34cbcc50dc029bd6a70002963274907d7df.zip |
Fix missing gtk20 dependency.
PR: 80886
Submitted by: Jean-Baptiste Quenot (maintainer)
-rw-r--r-- | comms/efax-gtk/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/comms/efax-gtk/Makefile b/comms/efax-gtk/Makefile index b6772276f06a..724bba42ade7 100644 --- a/comms/efax-gtk/Makefile +++ b/comms/efax-gtk/Makefile @@ -16,9 +16,10 @@ MAINTAINER= jb.quenot@caraldi.com COMMENT= GUI front end for the efax fax program LIB_DEPENDS= sigc-1.2.5:${PORTSDIR}/devel/libsigc++12 -RUN_DEPENDS= ${X11BASE}/bin/ggv:${PORTSDIR}/print/ggv -RUN_DEPENDS+= ${LOCALBASE}/bin/gs:${PORTSDIR}/print/ghostscript-gnu +RUN_DEPENDS= ${X11BASE}/bin/ggv:${PORTSDIR}/print/ggv \ + ${LOCALBASE}/bin/gs:${PORTSDIR}/print/ghostscript-gnu +USE_GNOME= gtk20 USE_X_PREFIX= YES GNU_CONFIGURE= YES CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome |