ee774b0f4f
- Use new EFL framework - Update all e17 ports to the lates stable cvs snapshot - Add additional knobs/options to ports makefiles to control the feature set - Add a bunch of new e17 applications/libraries - Minor improvements/modification. Approved by: vanilla (old maintainer), sem (mentor)
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: entropy
|
|
# Date created: 2006-08-14
|
|
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
|
|
#
|
|
# $MBSDlabs$
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= entropyfm
|
|
PORTVERSION= 20060926
|
|
CATEGORIES= x11-fm
|
|
MASTER_SITES= http://sunner.elcomnet.ru/~stas/
|
|
DISTNAME= ${PORTNAME:S,fm$,,}-${PORTVERSION}
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= An EFL-based file manager
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack pkgconfig gnometarget
|
|
USE_EFL= ecore etk ewl evfs imlib2 epsilon
|
|
GNU_CONFIGURE= yes
|
|
|
|
CFLAGS+= "-L${LOCALBASE}/lib"
|
|
|
|
OPTIONS= XTRACT "Enable metadata extraction via libextractor" on \
|
|
PNG "Enable png thumbnailing" on
|
|
|
|
DATADIR= ${PREFIX}/share/entropy
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "../../x11-wm/enlightenment-devel/bsd.efl.mk"
|
|
|
|
.if !defined(WITHOUT_XTRACT)
|
|
LIB_DEPENDS+= extractor.2:${PORTSDIR}/textproc/libextractor
|
|
CONFIGURE_ARGS+=--enable-plugin-extractor
|
|
PLIST_SUB+= EXTRACT=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-plugin-extractor
|
|
PLIST_SUB+= EXTRACT="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_PNG) || exists(${LOCALBASE}/lib/libpng.so.5)
|
|
LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|