mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
5114e2637e
bsd.port.mk rev. 1.304 for details on the change. The fix here is one of the following. (1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining EXTRACT_* commands. (2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously calling the "tar" command (i.e., arguments like "-xzf" are spelled out). (3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS}, add ${EXTRACT_AFTER_ARGS} to the command line as well. (4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS is set, define the other two too.
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: MaRS
|
|
# Version required: 2.1
|
|
# Date created: Mon Nov 18, 1996
|
|
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
|
|
#
|
|
# $Id: Makefile,v 1.7 1998/11/28 00:44:31 asami Exp $
|
|
#
|
|
|
|
DISTNAME= MaRS-2.1
|
|
PKGNAME= mars-2.1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= ftp://ftp.cs.umd.edu/pub/sdag/MaRS/
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES= MaRS-2.1.tar.gz MaRS-2-doc.tar.gz
|
|
.endif
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_ONLY= ${DISTNAME}.tar.gz
|
|
.if defined(HAVE_MOTIF) && !defined(PACKAGE_BUILDING)
|
|
MAKEFILE= Makefile.XMotif
|
|
.elif defined(WITH_X) && (${WITH_X} == NO || ${WITH_X} == no)
|
|
MAKEFILE= Makefile.NoX
|
|
.else
|
|
USE_XLIB= yes
|
|
MAKEFILE= Makefile.SimpleX
|
|
.endif
|
|
ALL_TARGET= depend mars
|
|
MAN1= mars.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mars ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/man/man1/mars.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/mars
|
|
@chmod a+rx ${PREFIX}/share/doc/mars
|
|
@(cd ${PREFIX}/share/doc ; \
|
|
${TAR} xfpz /${DISTDIR}/MaRS-2-doc.tar.gz ; \
|
|
[ -d mars ] && ${RM} -rf mars; \
|
|
/bin/mv doc mars )
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|