mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
e310cf30d5
not work, exiting with "Trace/BPT trap" error on startup and dumping core. Our devd(8) support patch was submitted upstream in July 2013 and generally welcomed by the author, but he has a slight preference for GIO's GSocket + GUnixSocketAddress APIs, and I never had time to rewrite the patch. After showering my camera with waters of Gulf of Thailand, it is unlikely that I will need to use this port any time soon, so let it go for the moment.
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= entangle
|
|
# [Non-working] update to 0.5.4: http://people.freebsd.org/~danfe/entangle.diff
|
|
PORTREVISION= 1
|
|
DISTVERSION= 0.5.3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://entangle-photo.org/download/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Digital camera tethered control and capture program
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 \
|
|
liblcms.so:${PORTSDIR}/graphics/lcms \
|
|
libgexiv2.so:${PORTSDIR}/graphics/gexiv2 \
|
|
libraw_r.so:${PORTSDIR}/graphics/libraw \
|
|
libpeas-1.0.so:${PORTSDIR}/devel/libpeas
|
|
|
|
USES= gmake pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gtk30 introspection:build
|
|
|
|
# XXX: it would be nice if one day this option would be passed automatically
|
|
# to configure scripts that support it :)
|
|
.if defined(BATCH) || defined(PACKAGE_BUILDING)
|
|
CONFIGURE_ARGS= --disable-silent-rules
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/checking for GUDEV/,+93d' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's,_udev,,' \
|
|
${WRKSRC}/src/backend/entangle-camera-list.c
|
|
|
|
.include <bsd.port.mk>
|