forked from Lainports/freebsd-ports
EFL updated to 1.1.0 and E17 updated to 0.16.999.65643 (svn 65643) - Pass maintainership to submitter. - New ports: benchmarks/expedite devel/eio graphics/evas-loader-generic graphics/evas-loader-ico graphics/evas-loader-psd graphics/evas-loader-wbmp graphics/evas_generic_loaders-gst graphics/evas_generic_loaders-pdf graphics/evas_generic_loaders-ps graphics/evas_generic_loaders-raw graphics/evas_generic_loaders-xcf x11-wm/e17-module-comp-scale x11-wm/e17-module-e-tiling x11-wm/e17-module-elfe x11-wm/e17-module-everything-aspell x11-wm/e17-module-everything-shotgun x11-wm/e17-module-xkbswitch PR: ports/167405 Submitted by: Grzegorz Blach <magik at roorback.net>
54 lines
1.2 KiB
Makefile
54 lines
1.2 KiB
Makefile
# New ports collection makefile for: ethumb
|
|
# Date created: 29 August 2010
|
|
# Whom: Grzegorz Blach <magik@roorback.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ethumb
|
|
PORTVERSION= 0.1.1.65643
|
|
CATEGORIES= graphics enlightenment
|
|
MASTER_SITES= http://download.enlightenment.org/snapshots/2011-11-28/ \
|
|
http://files.roorback.net/e17/base/
|
|
|
|
MAINTAINER= magik@roorback.net
|
|
COMMENT= Thumbnail generator library
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= exif.12:${PORTSDIR}/graphics/libexif
|
|
|
|
DIST_SUBDIR= e17
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_EFL= eina evas ecore edje libtool_hack
|
|
USE_EFL_ECORE= evas file x11 input_evas
|
|
USE_GNOME= gnomehack pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS= --disable-epdf
|
|
|
|
OPTIONS= EMOTION "Build with Emotion module" on \
|
|
ETHUMBD "Build ethumbd daemon (requires dbus)" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_EMOTION)
|
|
USE_EFL+= emotion
|
|
CONFIGURE_ARGS+= --enable-emotion
|
|
PLIST_SUB+= EMOTION=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-emotion
|
|
PLIST_SUB+= EMOTION="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_ETHUMBD)
|
|
USE_EFL+= edbus
|
|
PLIST_SUB+= ETHUMBD=""
|
|
CONFIGURE_ARGS+= --enable-ethumbd
|
|
.else
|
|
PLIST_SUB+= ETHUMBD="@comment "
|
|
CONFIGURE_ARGS+= --disable-ethumbd
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|