bf43557044
armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# Created by: John Reynolds <johnjen@reynoldsnet.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= s10sh
|
|
PORTVERSION= 0.2.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.reynoldsnet.org/s10sh/ \
|
|
http://www.edwinh.org/s10sh/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= USB/serial userspace driver for the Canon PowerShot digital cameras
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_aarch64= Fails to build: error: can not find the byte order for this architecture, fix bytesex.h
|
|
BROKEN_armv6= Fails to build: error: can not find the byte order for this architecture, fix bytesex.h
|
|
BROKEN_armv7= Fails to build: error: can not find the byte order for this architecture, fix bytesex.h
|
|
|
|
USES= ncurses readline
|
|
|
|
# Don't extract the libusb bundled with s10sh:
|
|
EXTRACT_AFTER_ARGS= --exclude '*/libusb*'
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|