mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
28eacf3dc2
the user to define NO_X11 if it is not. The auto-detection scheme caused problems for Satoshi's port building system.
41 lines
928 B
Makefile
41 lines
928 B
Makefile
# New ports collection makefile for: cvsup
|
|
# Version required: 15.4.2
|
|
# Date created: 7 August 1996
|
|
# Whom: asami
|
|
#
|
|
# $Id: Makefile,v 1.30 1999/01/22 11:50:31 wosch Exp $
|
|
#
|
|
|
|
DISTNAME= cvsup-15.4.2
|
|
CATEGORIES= devel net
|
|
MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/CVSup/ \
|
|
ftp://ftp.polstra.com/pub/FreeBSD/CVSup/
|
|
|
|
MAINTAINER= jdp@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= m3build-6:${PORTSDIR}/lang/modula-3
|
|
LIB_DEPENDS= m3.6:${PORTSDIR}/lang/modula-3-lib
|
|
|
|
MAN1= cvsup.1
|
|
MAN8= cvsupd.8
|
|
|
|
# Support building on systems with or without X11 installed.
|
|
.ifdef NO_X11
|
|
M3FLAGS+= -DNOGUI
|
|
.else
|
|
pre-fetch:
|
|
@echo -n "To build this port without X11 (and without the GUI),"
|
|
@echo " define \"NO_X11\"."
|
|
|
|
.endif
|
|
|
|
# Build options. Uncomment the desired ones.
|
|
# To link the programs statically:
|
|
#M3FLAGS+= -DSTATIC
|
|
# To link just the Modula-3 libraries statically:
|
|
#M3FLAGS+= -DM3STATIC
|
|
|
|
MAKE_ENV+= M3FLAGS="${M3FLAGS}"
|
|
|
|
.include <bsd.port.mk>
|