diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-08-27 22:44:44 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-08-27 22:44:44 +0000 |
commit | b8939904244ad30709193648aae9f7815f5eccb2 (patch) | |
tree | 84db661fae4943d39bac209aedd05c24603ec506 /misc/ezload/Makefile | |
parent | portlint and move manpages from PLIST to Makefile (diff) |
Import of ezload.
EZLOAD allows you to download firmware into and upload firmware from the
memory of a EZ-USB chip. An example program for the ActiveWire
board is included, including the Hex file with firmware for it.
(http://www.ActiveWireInc.com/)..
PR: 13424
Submitted by: n_hibma
Notes
Notes:
svn path=/head/; revision=21040
Diffstat (limited to 'misc/ezload/Makefile')
-rw-r--r-- | misc/ezload/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/misc/ezload/Makefile b/misc/ezload/Makefile new file mode 100644 index 000000000000..9e9fa49a7578 --- /dev/null +++ b/misc/ezload/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: oneko +# Version required: 0.1 +# Date created: 14 august 1999 +# Whom: n_hibma +# +# $FreeBSD$ +# + +DISTNAME= ezload-0.1 +CATEGORIES= misc +MASTER_SITES= http://www.etla.net/~n_hibma/usb/ + +MAINTAINER= n_hibma@FreeBSD.ORG + +MAN8= ezupload.8 ezdownload.8 aw.8 +MANCOMPRESSED= yes + +MAKE_ENV= BINDIR=${PREFIX}/bin MANDIR=${PREFIX}/man/man + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 400000 +IGNORE= 'This port only works on 4.x+' +.endif + +.include <bsd.port.post.mk> |