blob: 4b709c64643b504ca1900b26fc4690a3214cbe52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# ex:ts=8
# New ports collection makefile for: sfront
# Date created: Nov 4, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= sfront
PORTVERSION= 0.85
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://www.cs.berkeley.edu/~lazzaro/sa/
DISTNAME= ${PORTNAME}
DIST_SUBDIR= ${PKGNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A translator that converts MP4-SA files into efficient C programs
PLIST_FILES= bin/sfront
USE_REINPLACE= yes
USE_BISON= yes
WRKSRC= ${WRKDIR}/${PORTNAME}/src
ALL_TARGET= # empty
BROKEN= "Distinfo incorrect"
post-patch:
@${REINPLACE_CMD} -e "s,^CFLAGS,#CFLAGS,g" ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/../bin/sfront ${PREFIX}/bin
.include <bsd.port.mk>
|