diff options
author | marino <marino> | 2012-09-15 14:03:36 +0000 |
---|---|---|
committer | marino <marino> | 2012-09-15 14:03:36 +0000 |
commit | bdcdd3f7d2bbeee3bb8322da6c578cc36be70d66 (patch) | |
tree | 863fe5cac4ac301fef0455aa564d8acb622f66ac /lang | |
parent | 58154c4864eb7f835cdc3cff9a98314d35c90453 (diff) | |
download | pkgsrc-bdcdd3f7d2bbeee3bb8322da6c578cc36be70d66.tar.gz |
lang/racket-textual: pkglint cleanup
Admittedly most of this cleanup is petty cosmetic stuff, but there are
so many warnings that real problems are obscured such as the direct use
of $LOCALBASE. Also the use of parentheses instead of curly braces
caused several fake errors about not finding patches.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/racket-textual/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/racket-textual/Makefile b/lang/racket-textual/Makefile index a301810f034..0c49531c8ce 100644 --- a/lang/racket-textual/Makefile +++ b/lang/racket-textual/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2012/09/15 13:36:17 marino Exp $ +# $NetBSD: Makefile,v 1.11 2012/09/15 14:03:36 marino Exp $ PKGNAME= racket-textual-5.3 PKGREVISION= 1 -DISTNAME= $(PKGNAME_NOREV)-src-unix +DISTNAME= ${PKGNAME_NOREV}-src-unix CATEGORIES= lang MASTER_SITES_PLT= http://download.racket-lang.org/installers/$(PKGVERSION_NOREV)/ \ http://www.eecs.northwestern.edu/racket/$(PKGVERSION_NOREV)/ \ @@ -10,7 +10,7 @@ MASTER_SITES_PLT= http://download.racket-lang.org/installers/$(PKGVERSION_NOREV) http://mirror.informatik.uni-tuebingen.de/mirror/racket/$(PKGVERSION_NOREV)/ \ ftp://infogroep.be/pub/racket/installers/$(PKGVERSION_NOREV)/ \ http://russell.cs.bilgi.edu.tr/racket-installers/$(PKGVERSION_NOREV)/ -MASTER_SITES= $(MASTER_SITES_PLT:=racket-textual/) +MASTER_SITES= ${MASTER_SITES_PLT:=racket-textual/} EXTRACT_SUFX= .tgz MAINTAINER= asau@inbox.ru @@ -22,9 +22,9 @@ PKG_DESTDIR_SUPPORT= user-destdir CONFLICTS+= drscheme-[0-9]* mzscheme-[0-9]* racket-[0-9]* -PATCHDIR= $(.CURDIR)/../../lang/racket/patches +PATCHDIR= ${.CURDIR}/../../lang/racket/patches -WRKSRC= $(WRKDIR)/$(PKGNAME_NOREV) +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} GNU_CONFIGURE= yes CONFIGURE_DIRS= src @@ -42,12 +42,12 @@ CHECK_INTERPRETER_SKIP= lib/racket/collects/meta/build/sitemap/setup.py \ CHECK_INTERPRETER_SKIP+= lib/racket/collects/tests/jpr/mon-script.ss .for f in use-c-printf.rkt use-crypt.rkt use-esd.rkt use-magick.rkt use-sndfile.rkt use-tcl.rkt use-xmmsctrl.rkt use-xosd.rkt -REPLACE_RACKET+= collects/ffi/examples/$f +REPLACE_RACKET+= collects/ffi/examples/${f} .endfor REPLACE_INTERPRETER+= racket REPLACE.racket.old= .*racket -REPLACE.racket.new= ${LOCALBASE}/bin/racket +REPLACE.racket.new= ${PREFIX}/bin/racket REPLACE_FILES.racket= ${REPLACE_RACKET} |