It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
26 lines
567 B
Makefile
26 lines
567 B
Makefile
# Created by: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flasm
|
|
PORTVERSION= 1.62
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://www.nowrap.de/download/
|
|
MASTER_SITE_SUBDIR= kuriyama
|
|
DISTNAME= flasm16src
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Command line assembler/disassembler of flash actionscript bytecode
|
|
|
|
PLIST_FILES= bin/flasm
|
|
USE_ZIP= YES
|
|
USE_GMAKE= YES
|
|
USE_DOS2UNIX= YES
|
|
USES= bison
|
|
NO_WRKSUBDIR= YES
|
|
MAKE_ARGS= CFLAGS="${CFLAGS}"
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/flasm ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|