diff options
author | asami <asami@FreeBSD.org> | 1998-02-18 14:28:34 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-02-18 14:28:34 +0800 |
commit | 50d844f952692c26c835d3e648d51992b1e68f49 (patch) | |
tree | 5e32edf8bdff72ff8b38f88a65134dce3a6bc6ff /japanese/expect | |
parent | 4a66aaf4279c6051618cb072a74913c3ee415fb0 (diff) | |
download | freebsd-ports-gnome-50d844f952692c26c835d3e648d51992b1e68f49.tar.gz freebsd-ports-gnome-50d844f952692c26c835d3e648d51992b1e68f49.tar.zst freebsd-ports-gnome-50d844f952692c26c835d3e648d51992b1e68f49.zip |
Make the Makefiles of japanese/expect and lang/expect cooperate better
with each other (and hopefully easier to maintain in the future).
Basically, list everything in the regular orders on both Makefiles,
and use ?= in lang/expect/Makefile for variables we want to be
overridden.
PR: 5770
Diffstat (limited to 'japanese/expect')
-rw-r--r-- | japanese/expect/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/japanese/expect/Makefile b/japanese/expect/Makefile index 5796ed3f756f..89279dbfc1e1 100644 --- a/japanese/expect/Makefile +++ b/japanese/expect/Makefile @@ -3,7 +3,7 @@ # Date created: 17 Oct 1997 # Whom: taguchi # -# $Id: Makefile,v 1.4 1997/10/17 05:58:02 asami Exp $ +# $Id: Makefile,v 1.5 1998/02/17 15:13:00 steve Exp $ # PKGNAME= ja-expect-5.25 @@ -14,15 +14,12 @@ MAINTAINER= taguchi@tohoku.iij.ad.jp LIB_DEPENDS= tk42jp\\.1\\.:${PORTSDIR}/japanese/tk42 FILESDIR= ${.CURDIR}/../../lang/expect/files - -NO_MAN_INSTALL= yes -.include "${.CURDIR}/../../lang/expect/Makefile" - -CFLAGS+= -DKANJI -DKINPUT2 +CFLAGS= -DKANJI -DKINPUT2 CONFIGURE_ARGS= --enable-shared --with-tclconfig=${PREFIX}/lib/tcl7.6jp \ --with-tkconfig=${PREFIX}/lib/tk4.2jp \ --with-tclinclude=${PREFIX}/include/tcl7.6jp \ --with-tkinclude=${PREFIX}/include/tk4.2jp -test: - @(cd ${WRKSRC}; make test) +NO_MAN_INSTALL= yes + +.include "${.CURDIR}/../../lang/expect/Makefile" |