diff options
author | danfe <danfe@FreeBSD.org> | 2008-03-20 17:15:57 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2008-03-20 17:15:57 +0800 |
commit | b5e317f4981d7f7eb4fa298aaacfa87684509ca8 (patch) | |
tree | 2cc872453a0e90f3670310112c484a372b6010a1 /devel/tpasm/Makefile | |
parent | 05d2933729bf7cbed4ba41ec5c10a47225639df0 (diff) | |
download | freebsd-ports-gnome-b5e317f4981d7f7eb4fa298aaacfa87684509ca8.tar.gz freebsd-ports-gnome-b5e317f4981d7f7eb4fa298aaacfa87684509ca8.tar.zst freebsd-ports-gnome-b5e317f4981d7f7eb4fa298aaacfa87684509ca8.zip |
- Update to version 1.4
- Install examples
- Clean up Makefile
- Pacify portlint
Diffstat (limited to 'devel/tpasm/Makefile')
-rw-r--r-- | devel/tpasm/Makefile | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/devel/tpasm/Makefile b/devel/tpasm/Makefile index 70c7f9ac6e9a..2c71fb59e8f2 100644 --- a/devel/tpasm/Makefile +++ b/devel/tpasm/Makefile @@ -6,31 +6,33 @@ # PORTNAME= tpasm -PORTVERSION= 1.2 -PORTREVISION= 1 +PORTVERSION= 1.4 CATEGORIES= devel MASTER_SITES= ftp://ftp.ct0.com/pub/ DISTNAME= ${PORTNAME}${PORTVERSION} EXTRACT_SUFX= .tgz MAINTAINER= danfe@FreeBSD.org -COMMENT= Cross-assembler for 680x, 68hc11, 6502, Sunplus, 8051, Z80, PIC, AVR - -WRKSRC= ${WRKDIR}/${PORTNAME} +COMMENT= Cross-assembler for 680x, 68HC11, 6502, Sunplus, 8051, Z80, PIC, AVR USE_GMAKE= yes +PORTDOCS= * +PORTEXAMPLES= * do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - @${MKDIR} ${PREFIX}/libdata/${PORTNAME} .for file in 8051 8052 80c390 avr p16c505 picmacros - ${INSTALL_DATA} ${WRKSRC}/include/${file}.inc ${PREFIX}/libdata/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/include/${file}.inc \ + ${PREFIX}/libdata/${PORTNAME} .endfor - .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/MANUAL.TXT ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/MANUAL.TXT ${WRKSRC}/README*.TXT ${DOCSDIR} +.endif +.if !defined(NOPORTEXAMPLES) + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/samples/* ${EXAMPLESDIR} .endif .include <bsd.port.mk> |