diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-03-07 00:21:43 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-03-07 00:21:43 +0000 |
commit | 17c5e61843e2964a86265ea322ad87735cf0c1ac (patch) | |
tree | aff02fcaa058e5bf430e33e3cfbaa2078803fc71 /graphics/dore | |
parent | Checksum was missing. (diff) |
Redefine WRKSRC instead of WRKDIR so that "work/" won't be left behind
after a "make clean". Adjust scripts and variables accordingly.
Notes
Notes:
svn path=/head/; revision=2790
Diffstat (limited to 'graphics/dore')
-rw-r--r-- | graphics/dore/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/dore/Makefile b/graphics/dore/Makefile index b8729ce3b960..08f01cae21e9 100644 --- a/graphics/dore/Makefile +++ b/graphics/dore/Makefile @@ -3,20 +3,20 @@ # Date created: 10 February 1995 # Whom: jkh # -# $Id: Makefile,v 1.2 1995/04/01 12:45:49 jkh Exp $ +# $Id: Makefile,v 1.3 1995/04/09 07:09:33 asami Exp $ # DISTNAME= pdore-6.0 CATEGORIES+= graphics -MASTER_SITES= ftp://freefall.cdrom.com/pub/FreeBSD/LOCAL_PORTS/ +MASTER_SITES= ftp://freefall.freebsd.org/pub/FreeBSD/LOCAL_PORTS/ EXTRACT_SUFX= .tar.Z USE_GMAKE= yes USE_X11= yes -WRKDIR= ${.CURDIR}/work/dore -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR}/dore +EXTRACT_CMD= mkdir -p dore; cd dore; tar MAKEFILE= mk.stdx -MAKE_FLAGS= DORE_LOC=${WRKDIR}/.. CFLAGS=-O2 MAKEFLAGS=m -f +MAKE_FLAGS= DORE_LOC=${WRKDIR} CFLAGS=-O2 MAKEFLAGS=m -f ALL_TARGET= .include <bsd.port.mk> |