diff options
author | asami <asami@FreeBSD.org> | 1996-03-07 08:21:43 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-03-07 08:21:43 +0800 |
commit | 21b675f01c734df0b3400a96f2f8319ea054540d (patch) | |
tree | 2b617d7418a8030613836558185c48b07b789531 /graphics/dore | |
parent | 80b7201e22a9575b2d2058dc7f9ca9d157055f8e (diff) | |
download | freebsd-ports-graphics-21b675f01c734df0b3400a96f2f8319ea054540d.tar.gz freebsd-ports-graphics-21b675f01c734df0b3400a96f2f8319ea054540d.tar.zst freebsd-ports-graphics-21b675f01c734df0b3400a96f2f8319ea054540d.zip |
Redefine WRKSRC instead of WRKDIR so that "work/" won't be left behind
after a "make clean". Adjust scripts and variables accordingly.
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 b8729ce3b96..08f01cae21e 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> |