mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
to use my @FreeBSD.org email address. - devel/arduino - devel/arduino-glcd - devel/arduino-irremote - devel/arduino-mk - devel/arduino-sevseg - net/hostapd - net/py-pcap - security/bro - security/broccoli - security/create-cert - sysutils/lbl-cf - sysutils/lbl-hf - www/mini_httpd Reviewed by: ler (mentor) Approved by: ler (mentor) Differential Revision: https://reviews.freebsd.org/D12374
56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
# Created by: Craig Leres <leres@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arduino-glcd
|
|
PORTVERSION= 3.20111205
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://glcd-arduino.googlecode.com/files/
|
|
DISTNAME= glcd-20111205
|
|
|
|
MAINTAINER= leres@FreeBSD.org
|
|
COMMENT= GLCD Graphical LCD Library
|
|
|
|
LICENSE= LGPL21
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
DEPRECATED= Unfetchable for more than six months (google code has gone away)
|
|
EXPIRATION_DATE= 2017-04-30
|
|
|
|
RUN_DEPENDS= arduino:devel/arduino
|
|
|
|
WRKSRC= ${WRKDIR}/glcd
|
|
USES= zip dos2unix
|
|
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
FILES= \
|
|
Buildinfo.txt \
|
|
License.txt \
|
|
bitmaps \
|
|
config \
|
|
device \
|
|
doc \
|
|
fonts \
|
|
gText.cpp \
|
|
glcd.cpp \
|
|
glcd.h \
|
|
glcd_Buildinfo.h \
|
|
glcd_Config.h \
|
|
glcd_Device.cpp \
|
|
include \
|
|
readme.txt
|
|
|
|
PLIST_SUB+= EXAMPLESDIR_REL=${EXAMPLESDIR_REL}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/arduino/libraries/glcd
|
|
(cd ${WRKDIR}/glcd && ${COPYTREE_SHARE} "${FILES}" \
|
|
${STAGEDIR}${PREFIX}/arduino/libraries/glcd "! -name *\.orig")
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKDIR}/glcd/examples && ${COPYTREE_SHARE} . \
|
|
${STAGEDIR}${EXAMPLESDIR} "! -name *\.orig")
|
|
|
|
.include <bsd.port.mk>
|