diff options
author | asami <asami@FreeBSD.org> | 1995-02-11 21:51:48 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-02-11 21:51:48 +0800 |
commit | f00f61ef610a8de3a2a910e987fb397bed2e1dd0 (patch) | |
tree | 24bbbb01a66b3966a65153402e4eaaad5f842bab /lang/expect/Makefile | |
parent | 0707f721571142597f21951399e1bca2bfed70fe (diff) | |
download | freebsd-ports-gnome-f00f61ef610a8de3a2a910e987fb397bed2e1dd0.tar.gz freebsd-ports-gnome-f00f61ef610a8de3a2a910e987fb397bed2e1dd0.tar.zst freebsd-ports-gnome-f00f61ef610a8de3a2a910e987fb397bed2e1dd0.zip |
Converted Makefiles as much as I could.
(1) Took out INSTALL_MANPAGES (not necessary anymore, porter should
set NO_INSTALL_MANPAGES for not calling "make install.man")
(2) Replaced most of DEPENDS with EXEC_DEPENDS and LIB_DEPENDS. These
are the entries I used:
EXEC_DEPENDS:
unzip:${PORTSDIR}/archivers/unzip
gmake:${PORTSDIR}/devel/gmake
wishx:${PORTSDIR}/lang/tclX
xli:${PORTSDIR}/graphics/xli
gs:${PORTSDIR}/print/ghostscript
gunshar:${PORTSDIR}/archivers/gshar+gunshar
hfs:${PORTSDIR}/utils/hfs
rman:${PORTSDIR}/utils/rman
LIB_DEPENDS:
tiff\\.3\\.:${PORTSDIR}/graphics/tiff
jpeg\\.5\\.:${PORTSDIR}/graphics/jpeg
Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
tcl\\.7\\.:${PORTSDIR}/lang/tcl
tk\\.3\\.:${PORTSDIR}/x11/tk
xview\\.1\\.:${PORTSDIR}/x11/xview-lib
Xaw3d\\.:${PORTSDIR}/x11/Xaw3d
mpeg\\.1\\.:${PORTSDIR}/graphics/mpeg-lib
xview\\.3\\.:${PORTSDIR}/x11/xview-lib
BLT\\.1\\.:${PORTSDIR}/x11/blt
There are still some dependencies I can't figure out what exactly
is needed. If your port still has DEPENDS in it, please check it out!
Diffstat (limited to 'lang/expect/Makefile')
-rw-r--r-- | lang/expect/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/expect/Makefile b/lang/expect/Makefile index 54c344eb6c63..7b46a6500bae 100644 --- a/lang/expect/Makefile +++ b/lang/expect/Makefile @@ -3,7 +3,7 @@ # Date created: 20 November 1994 # Whom: pst # -# $Id: Makefile,v 1.1.1.1 1994/11/15 20:44:51 pst Exp $ +# $Id: Makefile,v 1.2 1995/01/05 03:13:03 jkh Exp $ # DISTNAME= expect-5.13 @@ -12,6 +12,7 @@ DISTFILES= expect.tar.gz HAS_CONFIGURE= yes GNU_CONFIGURE= yes -DEPENDS= ${PORTSDIR}/lang/tcl ${PORTSDIR}/x11/tk +LIB_DEPENDS= tcl\\.7\\.:${PORTSDIR}/lang/tcl \ + tk\\.3\\.:${PORTSDIR}/x11/tk .include <bsd.port.mk> |