diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2008-06-01 09:50:12 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2008-06-01 09:50:12 +0000 |
commit | eac4e8ca8593b45f8c75dd20e426da29e3db82d0 (patch) | |
tree | fc5a656b12302229e57ac9fde35dac41ea4be66f /lang/logo/Makefile | |
parent | 0f2af23cecb097dbc5ca92315fbc9d22b431deb4 (diff) | |
download | ports-eac4e8ca8593b45f8c75dd20e426da29e3db82d0.tar.gz ports-eac4e8ca8593b45f8c75dd20e426da29e3db82d0.zip |
Use USE_EMACS and USE_GHOSTSCRIPT instead of directly-specified
BUILD_DEPENDS.
Notes
Notes:
svn path=/head/; revision=214102
Diffstat (limited to 'lang/logo/Makefile')
-rw-r--r-- | lang/logo/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/logo/Makefile b/lang/logo/Makefile index cf693a5feea8..e7a0cdde040b 100644 --- a/lang/logo/Makefile +++ b/lang/logo/Makefile @@ -16,13 +16,13 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Brian Harvey's logo language interpreter .if defined(EMACS_LOGO_MODE) -BUILD_DEPENDS= emacs:${PORTSDIR}/editors/emacs +USE_EMACS= yes .endif + .if defined(WITH_FULL_DOCS) .undef NOPORTDOCS - -BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX \ - ps2pdf:${PORTSDIR}/${GHOSTSCRIPT_PORT} +BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base +USE_GHOSTSCRIPT=yes .endif WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} |