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 KiB
Makefile
47 lines
1 KiB
Makefile
# New ports collection makefile for: empower
|
|
# Date created: 2006-08-14
|
|
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
|
|
#
|
|
# $MBSDlabs$
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= empower
|
|
PORTVERSION= 20060926
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://sunner.elcomnet.ru/~stas/
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= A graphical sudo tool based on the EFL
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack pkgconfig gnometarget
|
|
USE_EFL= evas ecore edje
|
|
WANT_EFL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS= EWL "Build EWL backend" on \
|
|
ETK "Build ETK backed" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
BEFOREPORTMK= yes
|
|
.include "../../x11-wm/enlightenment-devel/bsd.efl.mk"
|
|
.undef BEFOREPORTMK
|
|
|
|
.if defined(WITHOUT_EWL) && !defined(WITH_ETK)
|
|
BROKEN= you should select either ETK or EWL
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_EWL) || ${HAVE_EFL:Mewl}
|
|
USE_EFL+= ewl
|
|
PLIST_FILES+= bin/empower_ewl
|
|
.endif
|
|
|
|
.if defined(WITH_ETK) || ${HAVE_EFL:Metk}
|
|
USE_EFL+= etk
|
|
PLIST_FILES+= bin/empower_etk
|
|
.endif
|
|
|
|
.include "../../x11-wm/enlightenment-devel/bsd.efl.mk"
|
|
.include <bsd.port.post.mk>
|