diff options
author | stas <stas@FreeBSD.org> | 2006-10-08 21:48:37 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2006-10-08 21:48:37 +0800 |
commit | 173755349dc2dd22744f67ee65b533ef3b1c3649 (patch) | |
tree | fcddf9b33a006f3b495b40ac5641012787c2a99e /x11/enity | |
parent | ed21c3e01f7d2d837804666f445b9249d985c327 (diff) | |
download | freebsd-ports-gnome-173755349dc2dd22744f67ee65b533ef3b1c3649.tar.gz freebsd-ports-gnome-173755349dc2dd22744f67ee65b533ef3b1c3649.tar.zst freebsd-ports-gnome-173755349dc2dd22744f67ee65b533ef3b1c3649.zip |
- Move to LOCALBASE
- 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)
Diffstat (limited to 'x11/enity')
-rw-r--r-- | x11/enity/Makefile | 27 | ||||
-rw-r--r-- | x11/enity/distinfo | 3 | ||||
-rw-r--r-- | x11/enity/files/patch-src_bin_enity.c | 20 | ||||
-rw-r--r-- | x11/enity/pkg-descr | 10 |
4 files changed, 60 insertions, 0 deletions
diff --git a/x11/enity/Makefile b/x11/enity/Makefile new file mode 100644 index 000000000000..2f9248afb800 --- /dev/null +++ b/x11/enity/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: enity +# Date created: 2006-08-14 +# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> +# +# $MBSDlabs$ +# $FreeBSD$ +# + +PORTNAME= enity +PORTVERSION= 20060926 +CATEGORIES= x11 +MASTER_SITES= http://sunner.elcomnet.ru/~stas/ + +MAINTAINER= stas@FreeBSD.org +COMMENT= Create Etk dialogs using scripts + +USE_BZIP2= yes +USE_GMAKE= yes +USE_GNOME= gnomehack pkgconfig gnometarget +USE_EFL= etk +GNU_CONFIGURE= yes + +PLIST_FILES= bin/enity + +.include <bsd.port.pre.mk> +.include "../../x11-wm/enlightenment-devel/bsd.efl.mk" +.include <bsd.port.post.mk> diff --git a/x11/enity/distinfo b/x11/enity/distinfo new file mode 100644 index 000000000000..7936ba5dd67f --- /dev/null +++ b/x11/enity/distinfo @@ -0,0 +1,3 @@ +MD5 (enity-20060926.tar.bz2) = aa2ba2aabd23e2b7f215085af12a7623 +SHA256 (enity-20060926.tar.bz2) = 4236e09b3e43af589684e44b1f1eed35226d642f6f907363d3cdc70432c4215e +SIZE (enity-20060926.tar.bz2) = 232524 diff --git a/x11/enity/files/patch-src_bin_enity.c b/x11/enity/files/patch-src_bin_enity.c new file mode 100644 index 000000000000..0b8afbac4f25 --- /dev/null +++ b/x11/enity/files/patch-src_bin_enity.c @@ -0,0 +1,20 @@ +--- src/bin/enity.c.orig Thu Oct 5 01:06:18 2006 ++++ src/bin/enity.c Thu Oct 5 01:07:02 2006 +@@ -376,7 +376,7 @@ + + valist[j] = NULL; + +- row = etk_tree_append_valist(ETK_TREE(tree), (va_list)valist); ++/* row = etk_tree_append_valist(ETK_TREE(tree), (va_list)valist); */ + etk_tree_row_data_set(row, cols); + } + } +@@ -583,7 +583,7 @@ + /* --list options */ + { "checklist", ' ', NULL, _en_list_check_cb, NULL, EN_ARGUMENT_FLAG_OPTIONAL, "Use check boxes for first column" }, + { "column", ' ', NULL, _en_list_column_cb, NULL, EN_ARGUMENT_FLAG_OPTIONAL|EN_ARGUMENT_FLAG_VALUE_REQUIRED|EN_ARGUMENT_FLAG_MULTIVALUE, "Set the column header" }, +- { "list", ' ', NULL, _en_list_cb, NULL, EN_ARGUMENT_FLAG_OPTIONAL, "Display list dialog" }, ++/* { "list", ' ', NULL, _en_list_cb, NULL, EN_ARGUMENT_FLAG_OPTIONAL, "Display list dialog" }, */ + + /* --progress options */ + { "progress", ' ', NULL, _en_progress_cb, NULL, EN_ARGUMENT_FLAG_OPTIONAL, "Display progress indication dialog" }, diff --git a/x11/enity/pkg-descr b/x11/enity/pkg-descr new file mode 100644 index 000000000000..af6ca53a3e4f --- /dev/null +++ b/x11/enity/pkg-descr @@ -0,0 +1,10 @@ +Enity allows users to create Etk dialogs using shell scripts or other +scripting languages that can call programs. The basic idea is to ease +the development of quick interfaces for input, configuration, +installation, etc... + +The List feature is currently disabled due to unresolved problems in +implementation. + +Author: Hisham 'CodeWarrior' Mardambey <hisham.mardambey@gmail.com> +WWW: http://www.enlightenment.org/ |