freebsd-ports/devel/gpsim/Makefile

43 lines
1 KiB
Makefile
Raw Normal View History

2006-03-19 23:43:05 +01:00
# New ports collection makefile for: gpsim
# Date created: 2006-03-13
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#
PORTNAME= gpsim
PORTVERSION= 0.22.0
2012-06-01 07:26:28 +02:00
PORTREVISION= 8
2006-03-19 23:43:05 +01:00
CATEGORIES= devel
MASTER_SITES= SF
2006-03-19 23:43:05 +01:00
MAINTAINER= acm@FreeBSD.org
2006-03-19 23:43:05 +01:00
COMMENT= A software simulator for Microchip PIC microcontrollers
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
gtkextra-x11-2.0.1:${PORTSDIR}/x11-toolkits/gtkextra2
RUN_DEPENDS= gpasm:${PORTSDIR}/devel/gputils
2010-12-04 08:34:27 +01:00
USE_AUTOTOOLS= libtool
2006-03-19 23:43:05 +01:00
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
2006-03-19 23:43:05 +01:00
.include <bsd.port.pre.mk>
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for FILE in AUTHORS ChangeLog PROCESSORS README* doc/gpsim.pdf
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
.endif
${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/examples && \
${FIND} * -type d -exec ${MKDIR} "${EXAMPLESDIR}/{}" \; && \
${FIND} -E * -type f -iregex ".*\.(asm|stc|inc)" -exec ${INSTALL_DATA} "{}" "${EXAMPLESDIR}/{}" \;
.include <bsd.port.post.mk>