diff options
Diffstat (limited to 'graphics/edje/Makefile')
-rw-r--r-- | graphics/edje/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/graphics/edje/Makefile b/graphics/edje/Makefile new file mode 100644 index 00000000000..bbce534b210 --- /dev/null +++ b/graphics/edje/Makefile @@ -0,0 +1,48 @@ +# $NetBSD: Makefile,v 1.1.1.1 2011/12/05 17:35:03 joerg Exp $ +# + +DISTNAME= edje-1.1.0 +CATEGORIES= graphics +MASTER_SITES= http://download.enlightenment.org/releases/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= joerg@NetBSD.org +HOMEPAGE= http://enlightenment.org/ +COMMENT= Interface Abstraction Library and Toolset + +PKG_DESTDIR_SUPPORT= user-destdir +# epp binary is GPL +LICENSE= 2-clause-bsd AND gnu-gpl-v2 + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_TOOLS= pkg-config + +PKG_OPTIONS_VAR= PKG_OPTIONS.edje +PKG_SUPPORTED_OPTIONS= python + +.include "../../mk/bsd.options.mk" + +PLIST_VARS+= python + +.if empty(PKG_OPTIONS:Mpython) +CONFIGURE_ARGS+= PYTHON=: +.else +PLIST.python= yes +REPLACE_PYTHON+= utils/inkscape2edc +.include "../../lang/python/application.mk" +.endif + +INSTALLATION_DIRS+= share/doc/edje + +post-install: + ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${WRKSRC}/COPYING \ + ${DESTDIR}${PREFIX}/share/doc/edje + +.include "../../devel/ecore/buildlink3.mk" +.include "../../devel/eet/buildlink3.mk" +.include "../../graphics/evas/buildlink3.mk" +.include "../../lang/embryo/buildlink3.mk" +.include "../../lang/lua/buildlink3.mk" + +.include "../../mk/bsd.pkg.mk" |