mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
d16f7bfb92
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
38 lines
802 B
Makefile
38 lines
802 B
Makefile
# New ports collection makefile for: qrash
|
|
# Date created: Oct 27, 1999
|
|
# Whom: Trevor Johnson
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qrash
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://qmg.org/files/demos/qmg/ \
|
|
ftp://qmg.org/pub/demos/qmg/ \
|
|
${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= X11/demos
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Animated musical demo for X11
|
|
|
|
GNU_CONFIGURE= yes
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_GCC= 2.95
|
|
USE_GMAKE= yes
|
|
USE_PERL5= yes # XXX
|
|
USE_X_PREFIX= yes
|
|
|
|
ALL_TARGET= qrash
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s=PREFIX=${PREFIX}=g" ${WRKSRC}/resource.cc
|
|
@${PERL} -pi -e "s=/usr/X11=${PREFIX}=g" ${WRKSRC}/configure
|
|
${FIND} ${WRKSRC} -type f -exec ${PERL} -pi -e \
|
|
"s:<malloc.h>:<stdlib.h>:g" {} \;
|
|
|
|
.include <bsd.port.mk>
|