1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/devel/simulavr/Makefile
Joerg Wunsch 6821cc5cf2 Fix broken pkg-plist: when changing the pkg-plist into a dynamically
created one to catch up with whatever files doxygen might install
today in rev 1.18, I didn't notice the MAN1-defined man pages were
no longer included into the pkg-plist now.

This has now been repaired.
2006-09-24 14:28:19 +00:00

55 lines
1.3 KiB
Makefile

# Ports collection makefile for: simulavr
# Date created: 3 Sep 2002
# Whom: Joerg Wunsch <joerg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= simulavr
PORTVERSION= 0.1.2
PORTREVISION= 8
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}
# special name only this time, don't let this go into ${PORTVERSION}
DISTNAME= ${PORTNAME}-${PORTVERSION}.2
MAINTAINER= joerg@FreeBSD.org
COMMENT= A simulator for AVR microcontrollers
BUILD_DEPENDS= ${LOCALBASE}/avr/include/avr/io.h:${PORTSDIR}/devel/avr-libc \
avr-ld:${PORTSDIR}/devel/avr-binutils \
doxygen:${PORTSDIR}/devel/doxygen \
latex:${PORTSDIR}/print/teTeX
#USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET=
CONFIGURE_ARGS= --disable-versioned-doc
MAN1= simulavr.1 simulavr-disp.1
INFO= simulavr
do-install:
${RM} -f ${TMPPLIST}
(cd ${BUILD_WRKSRC}/doc/internals_html && \
${FIND} . -type f \( -name '*.html' -or -name '*.css' \) |\
${SORT} |\
${SED} -e 's|^\.|share/doc/simulavr/internals_html|' \
>> ${TMPPLIST})
${CAT} ${PLIST} >> ${TMPPLIST}
@for man in ${__MANPAGES}; do \
${ECHO_CMD} $${man} >> ${TMPPLIST}; \
done
(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} install)
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
BROKEN= "Does not compile"
.endif
.include <bsd.port.post.mk>