mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
aee786be7f
PR: 38127 Submitted by: obraun@informatik.unibw-muenchen.de
59 lines
1.2 KiB
Makefile
59 lines
1.2 KiB
Makefile
# New ports collection makefile for: logo
|
|
# Date created: 22 October 1994
|
|
# Whom: jkh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ucblogo
|
|
PORTVERSION= 5.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_GNU} \
|
|
ftp://anarres.cs.berkeley.edu/pub/ucblogo/
|
|
|
|
.if defined(EMACS_LOGO_MODE)
|
|
BUILD_DEPENDS= emacs:${PORTSDIR}/editors/emacs
|
|
.endif
|
|
.if defined(WITH_FULL_DOCS)
|
|
.undef NOPORTDOCS
|
|
BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX \
|
|
ps2pdf:${PORTSDIR}/print/ghostscript-gnu
|
|
.endif
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
USE_XLIB= yes
|
|
MAKEFILE= makefile
|
|
HAS_CONFIGURE= yes
|
|
|
|
ALL_TARGET= all
|
|
|
|
.if defined(WITH_FULL_DOCS)
|
|
ALL_TARGET+= docs
|
|
PLIST_SUB+= WITH_FULL_DOCS=""
|
|
.else
|
|
PLIST_SUB+= WITH_FULL_DOCS="@comment "
|
|
.endif
|
|
|
|
.if defined(EMACS_LOGO_MODE)
|
|
ALL_TARGET+= logo-mode
|
|
PLIST_SUB+= EMACS_LOGO_MODE=""
|
|
.else
|
|
PLIST_SUB+= EMACS_LOGO_MODE="@comment "
|
|
.endif
|
|
|
|
pre-fetch:
|
|
.if !defined(EMACS_LOGO_MODE)
|
|
@${ECHO} ""
|
|
@${ECHO} " Define EMACS_LOGO_MODE to build the emacs logo mode"
|
|
@${ECHO} ""
|
|
.endif
|
|
.if !defined(WITH_FULL_DOCS)
|
|
@${ECHO} ""
|
|
@${ECHO} " Define WITH_FULL_DOCS to build ps, pdf and html docs"
|
|
@${ECHO} " This requires teTeX and ghostscript !"
|
|
@${ECHO} ""
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|