freebsd-ports/graphics/sane-frontends/Makefile
Marcelo Araujo e84f255403 - Update MASTER_SITES.
- Add LICENSE.
- Add MAKE_JOBS_SAFE.
- Fix options for GIMP support.

PR:		ports/172240
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-05-24 08:47:33 +00:00

51 lines
1.1 KiB
Makefile

# Created by: gary@hotlava.com
# $FreeBSD$
PORTNAME= sane-frontends
PORTVERSION= 1.0.14
PORTREVISION= 8
CATEGORIES= graphics
MASTER_SITES= http://alioth.debian.org/frs/download.php/1140/ \
ftp://ftp2.sane-project.org/pub/sane/
MAINTAINER= ports@FreeBSD.org
COMMENT= Tools for access to scanners, digitals camera, frame grabbers etc
LICENSE= GPLv2 # (or later)
LIB_DEPENDS= sane:${PORTSDIR}/graphics/sane-backends
USE_GMAKE= yes
GNU_CONFIGURE= yes
MAKE_JOBS_SAFE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
MAN1= scanadf.1 xcam.1 xscanimage.1
SUB_FILES= pkg-message
OPTIONS_DEFINE= GTK1 GIMP
GTK1_DESC= GTK1 support (Default is GTK2)
GIMP_DESC= also build xscanimage as a GIMP plug-in
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGTK1}
USE_GNOME+= gtk12
CONFIGURE_ARGS+= --disable-gtk2
CONFIGURE_ARGS+= --disable-gimp
.else
USE_GNOME+= gtk20
.if ${PORT_OPTIONS:MGIMP}
LIB_DEPENDS+= gimp-2.0:${PORTSDIR}/graphics/gimp-app
CONFIGURE_ARGS+= --enable-gimp
.else
CONFIGURE_ARGS+= --disable-gimp
.endif
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>