mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
408830a1f1
In addition, Kenneth Merry sent in a patch to s10sh which allows him to operate his camera. The owner of the code doesn't seem to respond to e-mail, so this functionality has been rolled in with the local patch that already existed. PR: ports/46060
36 lines
812 B
Makefile
36 lines
812 B
Makefile
# New ports collection makefile for: s10sh
|
|
# Date created: Tue Feb 27 00:16:34 MST 2001
|
|
# Whom: John Reynolds <johnjen@reynoldsnet.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= s10sh
|
|
PORTVERSION= 0.2.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.reynoldsnet.org/s10sh/ \
|
|
http://www.edwinh.org/s10sh/ \
|
|
http://www.kyuzz.org/antirez/s10sh-src/
|
|
|
|
MAINTAINER= johnjen@reynoldsnet.org
|
|
|
|
# Don't extract the libusb bundled with s10sh:
|
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude '*/libusb*'
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
|
|
.if defined(NOUSB) || defined(WITHOUT_USB)
|
|
MAKE_ENV+= WITHOUT_USB=YES
|
|
.else
|
|
LIB_DEPENDS= usb-0.1.7:${PORTSDIR}/devel/libusb
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|