freebsd-ports/graphics/multican/Makefile
Dmitry Marakasov 6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00

46 lines
1.1 KiB
Makefile

# New ports collection makefile for: Multican
# Date created: 30 Aug 2011
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= multican
DISTVERSION= 0.0.5
CATEGORIES= graphics
MASTER_SITES= SF
MAINTAINER= danfe@FreeBSD.org
COMMENT= Remote control utility for Canon DSLR cameras
LICENSE= GPLv2
CFLAGS+= -fPIC
USE_LDCONFIG= yes
PLIST_FILES= bin/multican lib/libmultican.so.0 lib/libmultican.so \
include/canonio.h include/usbio.h
PORTDOCS= ChangeLog README TODO
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800069
LIB_DEPENDS= usb:${PORTSDIR}/devel/libusb
CFLAGS+= -I${LOCALBASE}/include # does not uphold CPPFLAGS
LDFLAGS+= -L${LOCALBASE}/lib
.endif
post-patch:
@${REINPLACE_CMD} -e 's,endian\.h,sys/&,' ${WRKSRC}/canonio.c \
${WRKSRC}/usbio.c ${WRKSRC}/multican.c
post-install:
${INSTALL_PROGRAM} ${WRKSRC}/libmultican.so.0 ${PREFIX}/lib
${LN} -sf libmultican.so.0 ${PREFIX}/lib/libmultican.so
${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>