1cd277bdce
GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
34 lines
721 B
Makefile
34 lines
721 B
Makefile
# Created by: Nicole Reid <root@cooltrainer.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ems-flasher
|
|
PORTVERSION= 0.03
|
|
PORTREVISION= 2
|
|
CATEGORIES= comms
|
|
MASTER_SITES= http://lacklustre.net/redmine/attachments/download/10/ \
|
|
http://update.cooltrainer.org/freebsd-ports/comms/ems-flasher/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= root@cooltrainer.org
|
|
COMMENT= Utility to flash ROM images to the EMS USB 64mb flash cart
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_GMAKE= yes
|
|
CFLAGS+= -g -Wall
|
|
LDFLAGS+= -lusb
|
|
USE_GCC= yes
|
|
|
|
PLIST_FILES= bin/ems-flasher
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 800069
|
|
IGNORE= does not compile with the old USB stack
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ems-flasher ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|