initial port of enlightenment dr 17 and its support libs. mostly working,

but there's some todo items to work through before we attach it to the
build

initial work by laurent fanis
ok robert@ jasper@
bernd@ might have oked it if he wasnt giving a talk right now
This commit is contained in:
dlg 2007-11-30 16:04:37 +00:00
parent 447d54c5a1
commit a990f3de4a
59 changed files with 2175 additions and 0 deletions

13
x11/e17/Makefile Normal file
View File

@ -0,0 +1,13 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
SUBDIR += e
SUBDIR += ecore
SUBDIR += edje
SUBDIR += eet
SUBDIR += efreet
SUBDIR += embryo
SUBDIR += evas
CFLAGS+= -g
.include <bsd.port.subdir.mk>

10
x11/e17/Makefile.inc Normal file
View File

@ -0,0 +1,10 @@
# $OpenBSD: Makefile.inc,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
CATEGORIES?= x11
HOMEPAGE?= http://www.enlightenment.org/
MASTER_SITES?= http://www.itee.uq.edu.au/~dlg/openbsd/
DIST_SUBDIR?= e17
USE_LIBTOOL?= Yes

52
x11/e17/e/Makefile Normal file
View File

@ -0,0 +1,52 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
COMMENT= the enlightened window manager
DISTNAME= e-20071107
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= devel/gettext
WANTLIB= X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
Xinerama Xp Xrandr Xrender Xss c crypto curl ecore \
ecore_con ecore_evas ecore_file ecore_ipc ecore_job \
ecore_txt ecore_x eet embryo evas expat fontconfig \
freetype idn jpeg m pthread ssl usbhid z
LIB_DEPENDS= SDL::devel/sdl \
edje::x11/e17/edje \
efreet,efreet_mime::x11/e17/efreet
RUN_DEPENDS= ::devel/desktop-file-utils
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
CONFIGURE_STYLE= automake autoconf
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
E_CFLAGS="-I${LOCALBASE}/include/efreet" \
E_LIBS="-lssl -lcrypto -leet -levas -lecore -lecore_ipc -ledje -lefreet -lefreet_mime"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/enlightenment
mv ${WRKINST}/${SYSCONFDIR}/* ${PREFIX}/share/examples/
.if ${MACHINE_ARCH} == "amd64"
E_ARCH= x86_64
.else
E_ARCH= ${MACHINE_ARCH}
.endif
SUBST_VARS= E_ARCH
.include <bsd.port.mk>

5
x11/e17/e/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/e-20071107.tar.gz) = VfAqwLqMZ8UHX478E6p1+g==
RMD160 (e17/e-20071107.tar.gz) = 9wjyLzqUr6um9uORQeHOIcO3bfg=
SHA1 (e17/e-20071107.tar.gz) = 5oBIn0RaxoUvRPAxGnkWDGFRRow=
SHA256 (e17/e-20071107.tar.gz) = qlIXs9rJc6kKmwuZw06E5UptTb9eu2mhJDSFH+ulcJg=
SIZE (e17/e-20071107.tar.gz) = 32550812

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_bin_Makefile_am,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
--- src/bin/Makefile.am.orig Fri Nov 9 16:20:53 2007
+++ src/bin/Makefile.am Fri Nov 9 16:21:15 2007
@@ -345,7 +345,7 @@ e_xinerama.c
enlightenment_init_LDFLAGS = @e_libs@
-setuid_root_mode = a=rx,u+xs
+setuid_root_mode = a=rx,u+x
install-exec-hook:
@chmod $(setuid_root_mode) $(DESTDIR)$(bindir)/enlightenment_sys$(EXEEXT) || true

View File

@ -0,0 +1,24 @@
$OpenBSD: patch-src_bin_e_fm_c,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
--- src/bin/e_fm.c.orig Wed Nov 7 23:31:34 2007
+++ src/bin/e_fm.c Wed Nov 7 23:31:50 2007
@@ -3214,7 +3214,7 @@ _e_fm2_uri_parse(const char *val)
p = val + 7;
if (*p != '/')
{
- for (i = 0; *p != '/' && *p != '\0' && i < _POSIX_HOST_NAME_MAX; p++, i++)
+ for (i = 0; *p != '/' && *p != '\0' && i < MAXHOSTNAMELEN; p++, i++)
hostname[i] = *p;
}
hostname[i] = '\0';
@@ -3247,9 +3247,9 @@ _e_fm2_uri_path_list_get(Evas_List *uri_list)
{
E_Fm2_Uri *uri;
Evas_List *l, *path_list = NULL;
- char current_hostname[_POSIX_HOST_NAME_MAX];
+ char current_hostname[MAXHOSTNAMELEN];
- if (gethostname(current_hostname, _POSIX_HOST_NAME_MAX) == -1)
+ if (gethostname(current_hostname, MAXHOSTNAMELEN) == -1)
current_hostname[0] = '\0';
for (l = uri_list; l; l = l->next)

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_modules_cpufreq_Makefile_am,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
--- src/modules/cpufreq/Makefile.am.orig Fri Nov 9 15:16:55 2007
+++ src/modules/cpufreq/Makefile.am Fri Nov 9 15:17:26 2007
@@ -28,7 +28,7 @@ freqsetdir = $(pkgdir)
freqset_DATA = \
freqset$(EXEEXT)
-setuid_root_mode = a=rx,u+xs
+setuid_root_mode = a=rx,u+x
install-data-hook:
@chmod $(setuid_root_mode) $(DESTDIR)$(freqsetdir)/freqset$(EXEEXT) || true

11
x11/e17/e/pkg/DESCR Normal file
View File

@ -0,0 +1,11 @@
What is a Windowmanager? Strictly speaking, a Window Manager manages
windows - it is the Window Manager's task to arrange program windows on
screen in some defined fashion, and allow the user to move, resize,
iconify, and otherwise manipulate these client windows, without the
client programs needing to do this themselves.
Enlightenment goes beyond this, not just Managing Windows, but providing
a useful, good looking graphical shell from which to work. It is open
in design, and instead of dictating a policy it allows the user to
define their own policy right down to the minute and infinitesimal
details; from its functionality right on through to its looks.

View File

@ -0,0 +1,55 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
lib/enlightenment/modules/battery/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/clock/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_applications/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_borders/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_colors/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_desk/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_desklock/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_desks/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_display/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_dpms/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_engine/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_fonts/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_imc/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_intl/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_menus/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_mime/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_mouse/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_paths/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_performance/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_profiles/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_shelves/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_startup/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_theme/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_transitions/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_window_display/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/conf_winlist/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/cpufreq/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/dropshadow/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/exebuf/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/fileman/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/ibar/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/ibox/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/layout/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/pager/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/start/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/temperature/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/winlist/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/module.so
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_000.so
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_010.so
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_020.so
lib/enlightenment/preload/e_precache.so

564
x11/e17/e/pkg/PLIST Normal file
View File

@ -0,0 +1,564 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:38 dlg Exp $
%%SHARED%%
bin/enlightenment
bin/enlightenment-config
bin/enlightenment_fm
bin/enlightenment_imc
bin/enlightenment_init
bin/enlightenment_remote
bin/enlightenment_start
bin/enlightenment_sys
bin/enlightenment_thumb
include/enlightenment/
include/enlightenment/e.h
include/enlightenment/e_about.h
include/enlightenment/e_actions.h
include/enlightenment/e_alert.h
include/enlightenment/e_atoms.h
include/enlightenment/e_bg.h
include/enlightenment/e_bindings.h
include/enlightenment/e_border.h
include/enlightenment/e_box.h
include/enlightenment/e_canvas.h
include/enlightenment/e_color.h
include/enlightenment/e_color_class.h
include/enlightenment/e_color_dialog.h
include/enlightenment/e_config.h
include/enlightenment/e_config_data.h
include/enlightenment/e_config_dialog.h
include/enlightenment/e_configure.h
include/enlightenment/e_confirm_dialog.h
include/enlightenment/e_container.h
include/enlightenment/e_datastore.h
include/enlightenment/e_desk.h
include/enlightenment/e_desklock.h
include/enlightenment/e_dialog.h
include/enlightenment/e_dnd.h
include/enlightenment/e_dpms.h
include/enlightenment/e_eap_editor.h
include/enlightenment/e_editable.h
include/enlightenment/e_entry.h
include/enlightenment/e_entry_dialog.h
include/enlightenment/e_error.h
include/enlightenment/e_exec.h
include/enlightenment/e_exehist.h
include/enlightenment/e_filereg.h
include/enlightenment/e_flowlayout.h
include/enlightenment/e_fm.h
include/enlightenment/e_fm_custom.h
include/enlightenment/e_fm_hal.h
include/enlightenment/e_fm_mime.h
include/enlightenment/e_fm_prop.h
include/enlightenment/e_fm_shared.h
include/enlightenment/e_focus.h
include/enlightenment/e_font.h
include/enlightenment/e_gadcon.h
include/enlightenment/e_gadcon_popup.h
include/enlightenment/e_grabinput.h
include/enlightenment/e_hints.h
include/enlightenment/e_icon.h
include/enlightenment/e_ilist.h
include/enlightenment/e_includes.h
include/enlightenment/e_init.h
include/enlightenment/e_int_border_locks.h
include/enlightenment/e_int_border_menu.h
include/enlightenment/e_int_border_prop.h
include/enlightenment/e_int_border_remember.h
include/enlightenment/e_int_config_modules.h
include/enlightenment/e_int_gadcon_config.h
include/enlightenment/e_int_menus.h
include/enlightenment/e_int_shelf_config.h
include/enlightenment/e_int_toolbar_config.h
include/enlightenment/e_intl.h
include/enlightenment/e_intl_data.h
include/enlightenment/e_ipc.h
include/enlightenment/e_ipc_codec.h
include/enlightenment/e_ipc_handlers.h
include/enlightenment/e_ipc_handlers_list.h
include/enlightenment/e_layout.h
include/enlightenment/e_livethumb.h
include/enlightenment/e_manager.h
include/enlightenment/e_maximize.h
include/enlightenment/e_menu.h
include/enlightenment/e_mmx.h
include/enlightenment/e_module.h
include/enlightenment/e_mouse.h
include/enlightenment/e_moveresize.h
include/enlightenment/e_msg.h
include/enlightenment/e_msgbus.h
include/enlightenment/e_obj_dialog.h
include/enlightenment/e_object.h
include/enlightenment/e_order.h
include/enlightenment/e_pan.h
include/enlightenment/e_path.h
include/enlightenment/e_place.h
include/enlightenment/e_pointer.h
include/enlightenment/e_popup.h
include/enlightenment/e_prefix.h
include/enlightenment/e_remember.h
include/enlightenment/e_resist.h
include/enlightenment/e_screensaver.h
include/enlightenment/e_scrollframe.h
include/enlightenment/e_sha1.h
include/enlightenment/e_shelf.h
include/enlightenment/e_signals.h
include/enlightenment/e_slider.h
include/enlightenment/e_spectrum.h
include/enlightenment/e_startup.h
include/enlightenment/e_stolen.h
include/enlightenment/e_sys.h
include/enlightenment/e_table.h
include/enlightenment/e_test.h
include/enlightenment/e_theme.h
include/enlightenment/e_theme_about.h
include/enlightenment/e_thumb.h
include/enlightenment/e_tlist.h
include/enlightenment/e_toolbar.h
include/enlightenment/e_user.h
include/enlightenment/e_utils.h
include/enlightenment/e_widget.h
include/enlightenment/e_widget_aspect.h
include/enlightenment/e_widget_button.h
include/enlightenment/e_widget_check.h
include/enlightenment/e_widget_color_well.h
include/enlightenment/e_widget_config_list.h
include/enlightenment/e_widget_csel.h
include/enlightenment/e_widget_cslider.h
include/enlightenment/e_widget_desk_preview.h
include/enlightenment/e_widget_entry.h
include/enlightenment/e_widget_font_preview.h
include/enlightenment/e_widget_framelist.h
include/enlightenment/e_widget_frametable.h
include/enlightenment/e_widget_fsel.h
include/enlightenment/e_widget_ilist.h
include/enlightenment/e_widget_image.h
include/enlightenment/e_widget_label.h
include/enlightenment/e_widget_list.h
include/enlightenment/e_widget_preview.h
include/enlightenment/e_widget_radio.h
include/enlightenment/e_widget_scrollframe.h
include/enlightenment/e_widget_slider.h
include/enlightenment/e_widget_spectrum.h
include/enlightenment/e_widget_table.h
include/enlightenment/e_widget_textblock.h
include/enlightenment/e_widget_tlist.h
include/enlightenment/e_win.h
include/enlightenment/e_xinerama.h
include/enlightenment/e_zone.h
lib/enlightenment/
lib/enlightenment/modules/
lib/enlightenment/modules/battery/
lib/enlightenment/modules/battery/e-module-battery.edj
lib/enlightenment/modules/battery/module.desktop
lib/enlightenment/modules/battery/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/battery/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/battery/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/clock/
lib/enlightenment/modules/clock/e-module-clock.edj
lib/enlightenment/modules/clock/module.desktop
lib/enlightenment/modules/clock/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/clock/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/clock/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf/
lib/enlightenment/modules/conf/e-module-conf.edj
lib/enlightenment/modules/conf/module.desktop
lib/enlightenment/modules/conf/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_applications/
lib/enlightenment/modules/conf_applications/e-module-conf_applications.edj
lib/enlightenment/modules/conf_applications/module.desktop
lib/enlightenment/modules/conf_applications/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_applications/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_applications/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_borders/
lib/enlightenment/modules/conf_borders/e-module-conf_borders.edj
lib/enlightenment/modules/conf_borders/module.desktop
lib/enlightenment/modules/conf_borders/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_borders/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_borders/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_clientlist/
lib/enlightenment/modules/conf_clientlist/e-module-conf_clientlist.edj
lib/enlightenment/modules/conf_clientlist/module.desktop
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_colors/
lib/enlightenment/modules/conf_colors/e-module-conf_colors.edj
lib/enlightenment/modules/conf_colors/module.desktop
lib/enlightenment/modules/conf_colors/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_colors/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_colors/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_desk/
lib/enlightenment/modules/conf_desk/e-module-conf_desk.edj
lib/enlightenment/modules/conf_desk/module.desktop
lib/enlightenment/modules/conf_desk/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_desk/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_desk/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_desklock/
lib/enlightenment/modules/conf_desklock/e-module-conf_desklock.edj
lib/enlightenment/modules/conf_desklock/module.desktop
lib/enlightenment/modules/conf_desklock/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_desklock/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_desklock/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_desks/
lib/enlightenment/modules/conf_desks/e-module-conf_desks.edj
lib/enlightenment/modules/conf_desks/module.desktop
lib/enlightenment/modules/conf_desks/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_desks/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_desks/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_dialogs/
lib/enlightenment/modules/conf_dialogs/e-module-conf_dialogs.edj
lib/enlightenment/modules/conf_dialogs/module.desktop
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_display/
lib/enlightenment/modules/conf_display/e-module-conf_display.edj
lib/enlightenment/modules/conf_display/module.desktop
lib/enlightenment/modules/conf_display/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_display/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_display/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_dpms/
lib/enlightenment/modules/conf_dpms/e-module-conf_dpms.edj
lib/enlightenment/modules/conf_dpms/module.desktop
lib/enlightenment/modules/conf_dpms/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_dpms/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_dpms/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_engine/
lib/enlightenment/modules/conf_engine/e-module-conf_engine.edj
lib/enlightenment/modules/conf_engine/module.desktop
lib/enlightenment/modules/conf_engine/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_engine/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_engine/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_exebuf/
lib/enlightenment/modules/conf_exebuf/e-module-conf_exebuf.edj
lib/enlightenment/modules/conf_exebuf/module.desktop
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_fonts/
lib/enlightenment/modules/conf_fonts/e-module-conf_fonts.edj
lib/enlightenment/modules/conf_fonts/module.desktop
lib/enlightenment/modules/conf_fonts/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_fonts/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_fonts/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_icon_theme/
lib/enlightenment/modules/conf_icon_theme/e-module-conf_icon_theme.edj
lib/enlightenment/modules/conf_icon_theme/module.desktop
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_imc/
lib/enlightenment/modules/conf_imc/e-module-conf_imc.edj
lib/enlightenment/modules/conf_imc/module.desktop
lib/enlightenment/modules/conf_imc/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_imc/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_imc/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_intl/
lib/enlightenment/modules/conf_intl/e-module-conf_intl.edj
lib/enlightenment/modules/conf_intl/module.desktop
lib/enlightenment/modules/conf_intl/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_intl/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_intl/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_keybindings/
lib/enlightenment/modules/conf_keybindings/e-module-conf_keybindings.edj
lib/enlightenment/modules/conf_keybindings/module.desktop
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_menus/
lib/enlightenment/modules/conf_menus/e-module-conf_menus.edj
lib/enlightenment/modules/conf_menus/module.desktop
lib/enlightenment/modules/conf_menus/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_menus/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_menus/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_mime/
lib/enlightenment/modules/conf_mime/e-module-conf_mime.edj
lib/enlightenment/modules/conf_mime/module.desktop
lib/enlightenment/modules/conf_mime/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_mime/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_mime/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_mouse/
lib/enlightenment/modules/conf_mouse/e-module-conf_mouse.edj
lib/enlightenment/modules/conf_mouse/module.desktop
lib/enlightenment/modules/conf_mouse/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_mouse/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_mouse/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_mouse_cursor/
lib/enlightenment/modules/conf_mouse_cursor/e-module-conf_mouse_cursor.edj
lib/enlightenment/modules/conf_mouse_cursor/module.desktop
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_mousebindings/
lib/enlightenment/modules/conf_mousebindings/e-module-conf_mousebindings.edj
lib/enlightenment/modules/conf_mousebindings/module.desktop
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_paths/
lib/enlightenment/modules/conf_paths/e-module-conf_paths.edj
lib/enlightenment/modules/conf_paths/module.desktop
lib/enlightenment/modules/conf_paths/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_paths/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_paths/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_performance/
lib/enlightenment/modules/conf_performance/e-module-conf_performance.edj
lib/enlightenment/modules/conf_performance/module.desktop
lib/enlightenment/modules/conf_performance/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_performance/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_performance/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_profiles/
lib/enlightenment/modules/conf_profiles/e-module-conf_profiles.edj
lib/enlightenment/modules/conf_profiles/module.desktop
lib/enlightenment/modules/conf_profiles/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_profiles/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_profiles/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_screensaver/
lib/enlightenment/modules/conf_screensaver/e-module-conf_screensaver.edj
lib/enlightenment/modules/conf_screensaver/module.desktop
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_shelves/
lib/enlightenment/modules/conf_shelves/e-module-conf_shelves.edj
lib/enlightenment/modules/conf_shelves/module.desktop
lib/enlightenment/modules/conf_shelves/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_shelves/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_shelves/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_startup/
lib/enlightenment/modules/conf_startup/e-module-conf_startup.edj
lib/enlightenment/modules/conf_startup/module.desktop
lib/enlightenment/modules/conf_startup/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_startup/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_startup/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_theme/
lib/enlightenment/modules/conf_theme/e-module-conf_theme.edj
lib/enlightenment/modules/conf_theme/module.desktop
lib/enlightenment/modules/conf_theme/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_theme/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_theme/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_transitions/
lib/enlightenment/modules/conf_transitions/e-module-conf_transitions.edj
lib/enlightenment/modules/conf_transitions/module.desktop
lib/enlightenment/modules/conf_transitions/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_transitions/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_transitions/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_wallpaper/
lib/enlightenment/modules/conf_wallpaper/e-module-conf_wallpaper.edj
lib/enlightenment/modules/conf_wallpaper/module.desktop
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_window_display/
lib/enlightenment/modules/conf_window_display/e-module-conf_window_display.edj
lib/enlightenment/modules/conf_window_display/module.desktop
lib/enlightenment/modules/conf_window_display/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_window_display/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_window_display/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_window_focus/
lib/enlightenment/modules/conf_window_focus/e-module-conf_window_focus.edj
lib/enlightenment/modules/conf_window_focus/module.desktop
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_window_manipulation/
lib/enlightenment/modules/conf_window_manipulation/e-module-conf_winmanip.edj
lib/enlightenment/modules/conf_window_manipulation/module.desktop
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/conf_winlist/
lib/enlightenment/modules/conf_winlist/e-module-conf_winlist.edj
lib/enlightenment/modules/conf_winlist/module.desktop
lib/enlightenment/modules/conf_winlist/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/conf_winlist/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/conf_winlist/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/cpufreq/
lib/enlightenment/modules/cpufreq/e-module-cpufreq.edj
lib/enlightenment/modules/cpufreq/module.desktop
lib/enlightenment/modules/cpufreq/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/cpufreq/openbsd4.2-${E_ARCH}/freqset
lib/enlightenment/modules/cpufreq/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/cpufreq/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/dropshadow/
lib/enlightenment/modules/dropshadow/e-module-dropshadow.edj
lib/enlightenment/modules/dropshadow/module.desktop
lib/enlightenment/modules/dropshadow/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/dropshadow/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/dropshadow/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/exebuf/
lib/enlightenment/modules/exebuf/e-module-exebuf.edj
lib/enlightenment/modules/exebuf/module.desktop
lib/enlightenment/modules/exebuf/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/exebuf/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/exebuf/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/fileman/
lib/enlightenment/modules/fileman/e-module-fileman.edj
lib/enlightenment/modules/fileman/module.desktop
lib/enlightenment/modules/fileman/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/fileman/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/fileman/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/ibar/
lib/enlightenment/modules/ibar/e-module-ibar.edj
lib/enlightenment/modules/ibar/module.desktop
lib/enlightenment/modules/ibar/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/ibar/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/ibar/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/ibox/
lib/enlightenment/modules/ibox/e-module-ibox.edj
lib/enlightenment/modules/ibox/module.desktop
lib/enlightenment/modules/ibox/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/ibox/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/ibox/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/layout/
lib/enlightenment/modules/layout/e-module-layout.edj
lib/enlightenment/modules/layout/module.desktop
lib/enlightenment/modules/layout/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/layout/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/layout/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/msgbus_lang/
lib/enlightenment/modules/msgbus_lang/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/pager/
lib/enlightenment/modules/pager/e-module-pager.edj
lib/enlightenment/modules/pager/module.desktop
lib/enlightenment/modules/pager/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/pager/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/pager/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/start/
lib/enlightenment/modules/start/e-module-start.edj
lib/enlightenment/modules/start/module.desktop
lib/enlightenment/modules/start/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/start/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/start/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/temperature/
lib/enlightenment/modules/temperature/e-module-temperature.edj
lib/enlightenment/modules/temperature/module.desktop
lib/enlightenment/modules/temperature/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/temperature/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/temperature/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/winlist/
lib/enlightenment/modules/winlist/e-module-winlist.edj
lib/enlightenment/modules/winlist/module.desktop
lib/enlightenment/modules/winlist/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/winlist/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/winlist/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/wizard/
lib/enlightenment/modules/wizard/e-module-wizard.edj
lib/enlightenment/modules/wizard/module.desktop
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/module.a
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/module.la
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_000.a
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_000.la
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_010.a
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_010.la
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_020.a
lib/enlightenment/modules/wizard/openbsd4.2-${E_ARCH}/page_020.la
lib/enlightenment/preload/
lib/enlightenment/preload/e_precache.a
lib/enlightenment/preload/e_precache.la
share/enlightenment/
share/enlightenment/AUTHORS
share/enlightenment/COPYING
share/enlightenment/data/
share/enlightenment/data/backgrounds/
share/enlightenment/data/backgrounds/Blue_Sky_Tree.edj
share/enlightenment/data/backgrounds/Cracked_Earth.edj
share/enlightenment/data/backgrounds/Ivy_Wall.edj
share/enlightenment/data/backgrounds/Ladybug.edj
share/enlightenment/data/fonts/
share/enlightenment/data/fonts/Vera.COPYING
share/enlightenment/data/fonts/Vera.ttf
share/enlightenment/data/fonts/VeraBI.ttf
share/enlightenment/data/fonts/VeraBd.ttf
share/enlightenment/data/fonts/VeraIt.ttf
share/enlightenment/data/fonts/VeraMoBI.ttf
share/enlightenment/data/fonts/VeraMoBd.ttf
share/enlightenment/data/fonts/VeraMoIt.ttf
share/enlightenment/data/fonts/VeraMono.ttf
share/enlightenment/data/fonts/VeraSe.ttf
share/enlightenment/data/fonts/VeraSeBd.ttf
share/enlightenment/data/fonts/fonts.alias
share/enlightenment/data/fonts/fonts.dir
share/enlightenment/data/icons/
share/enlightenment/data/icons/audio_player.png
share/enlightenment/data/icons/audio_player2.png
share/enlightenment/data/icons/image_viewer.png
share/enlightenment/data/icons/mail_client.png
share/enlightenment/data/icons/text_editor.png
share/enlightenment/data/icons/video_player.png
share/enlightenment/data/icons/web_browser.png
share/enlightenment/data/icons/xterm.png
share/enlightenment/data/images/
share/enlightenment/data/images/enlightenment.png
share/enlightenment/data/images/test.edj
share/enlightenment/data/images/test.jpg
share/enlightenment/data/images/test.png
share/enlightenment/data/init/
share/enlightenment/data/init/default.edj
share/enlightenment/data/input_methods/
share/enlightenment/data/input_methods/iiimf.imc
share/enlightenment/data/input_methods/scim.imc
share/enlightenment/data/input_methods/uim.imc
share/enlightenment/data/other/
share/enlightenment/data/other/desktop_files.tar.gz
share/enlightenment/data/other/desktop_order.tar.gz
share/enlightenment/data/other/efm_favorites.tar.gz
share/enlightenment/data/other/icon_example.tar.gz
share/enlightenment/data/themes/
share/enlightenment/data/themes/default.edj
share/enlightenment/doc/
share/enlightenment/doc/FDO.txt
share/enlightenment/doc/cache.txt
share/enlightenment/doc/documentation.html
share/enlightenment/doc/enlightenment.png
share/examples/enlightenment/
@sample ${SYSCONFDIR}/enlightenment
share/examples/enlightenment/sysactions.conf
@sample ${SYSCONFDIR}/enlightenment/sysactions.conf
share/locale/
share/locale/bg/
share/locale/bg/LC_MESSAGES/
share/locale/bg/LC_MESSAGES/enlightenment.mo
share/locale/ca/
share/locale/ca/LC_MESSAGES/
share/locale/ca/LC_MESSAGES/enlightenment.mo
share/locale/de/
share/locale/de/LC_MESSAGES/
share/locale/de/LC_MESSAGES/enlightenment.mo
share/locale/eo/
share/locale/eo/LC_MESSAGES/
share/locale/eo/LC_MESSAGES/enlightenment.mo
share/locale/fr/
share/locale/fr/LC_MESSAGES/
share/locale/fr/LC_MESSAGES/enlightenment.mo
share/locale/hu/
share/locale/hu/LC_MESSAGES/
share/locale/hu/LC_MESSAGES/enlightenment.mo
share/locale/it/
share/locale/it/LC_MESSAGES/
share/locale/it/LC_MESSAGES/enlightenment.mo
share/locale/ja/
share/locale/ja/LC_MESSAGES/
share/locale/ja/LC_MESSAGES/enlightenment.mo
share/locale/ko/
share/locale/ko/LC_MESSAGES/
share/locale/ko/LC_MESSAGES/enlightenment.mo
share/locale/pt_BR/
share/locale/pt_BR/LC_MESSAGES/
share/locale/pt_BR/LC_MESSAGES/enlightenment.mo
share/locale/ru/
share/locale/ru/LC_MESSAGES/
share/locale/ru/LC_MESSAGES/enlightenment.mo
share/locale/sl/
share/locale/sl/LC_MESSAGES/
share/locale/sl/LC_MESSAGES/enlightenment.mo
share/locale/zh_TW/
share/locale/zh_TW/LC_MESSAGES/
share/locale/zh_TW/LC_MESSAGES/enlightenment.mo
share/xsessions/
share/xsessions/enlightenment.desktop
@exec %D/bin/update-desktop-database
@unexec %D/bin/update-desktop-database

558
x11/e17/e/pkg/PLIST.clean Normal file
View File

@ -0,0 +1,558 @@
@comment $OpenBSD: PLIST.clean,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/enlightenment
bin/enlightenment-config
bin/enlightenment_fm
bin/enlightenment_imc
bin/enlightenment_init
bin/enlightenment_remote
bin/enlightenment_start
bin/enlightenment_sys
bin/enlightenment_thumb
include/enlightenment/
include/enlightenment/e.h
include/enlightenment/e_about.h
include/enlightenment/e_actions.h
include/enlightenment/e_alert.h
include/enlightenment/e_atoms.h
include/enlightenment/e_bg.h
include/enlightenment/e_bindings.h
include/enlightenment/e_border.h
include/enlightenment/e_box.h
include/enlightenment/e_canvas.h
include/enlightenment/e_color.h
include/enlightenment/e_color_class.h
include/enlightenment/e_color_dialog.h
include/enlightenment/e_config.h
include/enlightenment/e_config_data.h
include/enlightenment/e_config_dialog.h
include/enlightenment/e_configure.h
include/enlightenment/e_confirm_dialog.h
include/enlightenment/e_container.h
include/enlightenment/e_datastore.h
include/enlightenment/e_desk.h
include/enlightenment/e_desklock.h
include/enlightenment/e_dialog.h
include/enlightenment/e_dnd.h
include/enlightenment/e_dpms.h
include/enlightenment/e_eap_editor.h
include/enlightenment/e_editable.h
include/enlightenment/e_entry.h
include/enlightenment/e_entry_dialog.h
include/enlightenment/e_error.h
include/enlightenment/e_exec.h
include/enlightenment/e_exehist.h
include/enlightenment/e_filereg.h
include/enlightenment/e_flowlayout.h
include/enlightenment/e_fm.h
include/enlightenment/e_fm_custom.h
include/enlightenment/e_fm_hal.h
include/enlightenment/e_fm_mime.h
include/enlightenment/e_fm_prop.h
include/enlightenment/e_fm_shared.h
include/enlightenment/e_focus.h
include/enlightenment/e_font.h
include/enlightenment/e_gadcon.h
include/enlightenment/e_gadcon_popup.h
include/enlightenment/e_grabinput.h
include/enlightenment/e_hints.h
include/enlightenment/e_icon.h
include/enlightenment/e_ilist.h
include/enlightenment/e_includes.h
include/enlightenment/e_init.h
include/enlightenment/e_int_border_locks.h
include/enlightenment/e_int_border_menu.h
include/enlightenment/e_int_border_prop.h
include/enlightenment/e_int_border_remember.h
include/enlightenment/e_int_config_modules.h
include/enlightenment/e_int_gadcon_config.h
include/enlightenment/e_int_menus.h
include/enlightenment/e_int_shelf_config.h
include/enlightenment/e_int_toolbar_config.h
include/enlightenment/e_intl.h
include/enlightenment/e_intl_data.h
include/enlightenment/e_ipc.h
include/enlightenment/e_ipc_codec.h
include/enlightenment/e_ipc_handlers.h
include/enlightenment/e_ipc_handlers_list.h
include/enlightenment/e_layout.h
include/enlightenment/e_livethumb.h
include/enlightenment/e_manager.h
include/enlightenment/e_maximize.h
include/enlightenment/e_menu.h
include/enlightenment/e_mmx.h
include/enlightenment/e_module.h
include/enlightenment/e_mouse.h
include/enlightenment/e_moveresize.h
include/enlightenment/e_msg.h
include/enlightenment/e_msgbus.h
include/enlightenment/e_obj_dialog.h
include/enlightenment/e_object.h
include/enlightenment/e_order.h
include/enlightenment/e_pan.h
include/enlightenment/e_path.h
include/enlightenment/e_place.h
include/enlightenment/e_pointer.h
include/enlightenment/e_popup.h
include/enlightenment/e_prefix.h
include/enlightenment/e_remember.h
include/enlightenment/e_resist.h
include/enlightenment/e_screensaver.h
include/enlightenment/e_scrollframe.h
include/enlightenment/e_sha1.h
include/enlightenment/e_shelf.h
include/enlightenment/e_signals.h
include/enlightenment/e_slider.h
include/enlightenment/e_spectrum.h
include/enlightenment/e_startup.h
include/enlightenment/e_stolen.h
include/enlightenment/e_sys.h
include/enlightenment/e_table.h
include/enlightenment/e_test.h
include/enlightenment/e_theme.h
include/enlightenment/e_theme_about.h
include/enlightenment/e_thumb.h
include/enlightenment/e_tlist.h
include/enlightenment/e_toolbar.h
include/enlightenment/e_user.h
include/enlightenment/e_utils.h
include/enlightenment/e_widget.h
include/enlightenment/e_widget_aspect.h
include/enlightenment/e_widget_button.h
include/enlightenment/e_widget_check.h
include/enlightenment/e_widget_color_well.h
include/enlightenment/e_widget_config_list.h
include/enlightenment/e_widget_csel.h
include/enlightenment/e_widget_cslider.h
include/enlightenment/e_widget_desk_preview.h
include/enlightenment/e_widget_entry.h
include/enlightenment/e_widget_font_preview.h
include/enlightenment/e_widget_framelist.h
include/enlightenment/e_widget_frametable.h
include/enlightenment/e_widget_fsel.h
include/enlightenment/e_widget_ilist.h
include/enlightenment/e_widget_image.h
include/enlightenment/e_widget_label.h
include/enlightenment/e_widget_list.h
include/enlightenment/e_widget_preview.h
include/enlightenment/e_widget_radio.h
include/enlightenment/e_widget_scrollframe.h
include/enlightenment/e_widget_slider.h
include/enlightenment/e_widget_spectrum.h
include/enlightenment/e_widget_table.h
include/enlightenment/e_widget_textblock.h
include/enlightenment/e_widget_tlist.h
include/enlightenment/e_win.h
include/enlightenment/e_xinerama.h
include/enlightenment/e_zone.h
lib/enlightenment/
lib/enlightenment/modules/
lib/enlightenment/modules/battery/
lib/enlightenment/modules/battery/e-module-battery.edj
lib/enlightenment/modules/battery/module.desktop
lib/enlightenment/modules/battery/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/battery/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/battery/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/clock/
lib/enlightenment/modules/clock/e-module-clock.edj
lib/enlightenment/modules/clock/module.desktop
lib/enlightenment/modules/clock/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/clock/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/clock/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf/
lib/enlightenment/modules/conf/e-module-conf.edj
lib/enlightenment/modules/conf/module.desktop
lib/enlightenment/modules/conf/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_applications/
lib/enlightenment/modules/conf_applications/e-module-conf_applications.edj
lib/enlightenment/modules/conf_applications/module.desktop
lib/enlightenment/modules/conf_applications/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_applications/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_applications/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_borders/
lib/enlightenment/modules/conf_borders/e-module-conf_borders.edj
lib/enlightenment/modules/conf_borders/module.desktop
lib/enlightenment/modules/conf_borders/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_borders/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_borders/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_clientlist/
lib/enlightenment/modules/conf_clientlist/e-module-conf_clientlist.edj
lib/enlightenment/modules/conf_clientlist/module.desktop
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_clientlist/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_colors/
lib/enlightenment/modules/conf_colors/e-module-conf_colors.edj
lib/enlightenment/modules/conf_colors/module.desktop
lib/enlightenment/modules/conf_colors/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_colors/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_colors/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_desk/
lib/enlightenment/modules/conf_desk/e-module-conf_desk.edj
lib/enlightenment/modules/conf_desk/module.desktop
lib/enlightenment/modules/conf_desk/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_desk/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_desk/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_desklock/
lib/enlightenment/modules/conf_desklock/e-module-conf_desklock.edj
lib/enlightenment/modules/conf_desklock/module.desktop
lib/enlightenment/modules/conf_desklock/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_desklock/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_desklock/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_desks/
lib/enlightenment/modules/conf_desks/e-module-conf_desks.edj
lib/enlightenment/modules/conf_desks/module.desktop
lib/enlightenment/modules/conf_desks/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_desks/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_desks/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_dialogs/
lib/enlightenment/modules/conf_dialogs/e-module-conf_dialogs.edj
lib/enlightenment/modules/conf_dialogs/module.desktop
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_dialogs/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_display/
lib/enlightenment/modules/conf_display/e-module-conf_display.edj
lib/enlightenment/modules/conf_display/module.desktop
lib/enlightenment/modules/conf_display/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_display/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_display/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_dpms/
lib/enlightenment/modules/conf_dpms/e-module-conf_dpms.edj
lib/enlightenment/modules/conf_dpms/module.desktop
lib/enlightenment/modules/conf_dpms/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_dpms/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_dpms/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_engine/
lib/enlightenment/modules/conf_engine/e-module-conf_engine.edj
lib/enlightenment/modules/conf_engine/module.desktop
lib/enlightenment/modules/conf_engine/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_engine/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_engine/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_exebuf/
lib/enlightenment/modules/conf_exebuf/e-module-conf_exebuf.edj
lib/enlightenment/modules/conf_exebuf/module.desktop
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_exebuf/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_fonts/
lib/enlightenment/modules/conf_fonts/e-module-conf_fonts.edj
lib/enlightenment/modules/conf_fonts/module.desktop
lib/enlightenment/modules/conf_fonts/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_fonts/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_fonts/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_icon_theme/
lib/enlightenment/modules/conf_icon_theme/e-module-conf_icon_theme.edj
lib/enlightenment/modules/conf_icon_theme/module.desktop
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_icon_theme/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_imc/
lib/enlightenment/modules/conf_imc/e-module-conf_imc.edj
lib/enlightenment/modules/conf_imc/module.desktop
lib/enlightenment/modules/conf_imc/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_imc/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_imc/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_intl/
lib/enlightenment/modules/conf_intl/e-module-conf_intl.edj
lib/enlightenment/modules/conf_intl/module.desktop
lib/enlightenment/modules/conf_intl/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_intl/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_intl/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_keybindings/
lib/enlightenment/modules/conf_keybindings/e-module-conf_keybindings.edj
lib/enlightenment/modules/conf_keybindings/module.desktop
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_keybindings/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_menus/
lib/enlightenment/modules/conf_menus/e-module-conf_menus.edj
lib/enlightenment/modules/conf_menus/module.desktop
lib/enlightenment/modules/conf_menus/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_menus/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_menus/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_mime/
lib/enlightenment/modules/conf_mime/e-module-conf_mime.edj
lib/enlightenment/modules/conf_mime/module.desktop
lib/enlightenment/modules/conf_mime/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_mime/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_mime/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_mouse/
lib/enlightenment/modules/conf_mouse/e-module-conf_mouse.edj
lib/enlightenment/modules/conf_mouse/module.desktop
lib/enlightenment/modules/conf_mouse/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_mouse/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_mouse/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_mouse_cursor/
lib/enlightenment/modules/conf_mouse_cursor/e-module-conf_mouse_cursor.edj
lib/enlightenment/modules/conf_mouse_cursor/module.desktop
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_mouse_cursor/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_mousebindings/
lib/enlightenment/modules/conf_mousebindings/e-module-conf_mousebindings.edj
lib/enlightenment/modules/conf_mousebindings/module.desktop
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_mousebindings/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_paths/
lib/enlightenment/modules/conf_paths/e-module-conf_paths.edj
lib/enlightenment/modules/conf_paths/module.desktop
lib/enlightenment/modules/conf_paths/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_paths/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_paths/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_performance/
lib/enlightenment/modules/conf_performance/e-module-conf_performance.edj
lib/enlightenment/modules/conf_performance/module.desktop
lib/enlightenment/modules/conf_performance/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_performance/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_performance/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_profiles/
lib/enlightenment/modules/conf_profiles/e-module-conf_profiles.edj
lib/enlightenment/modules/conf_profiles/module.desktop
lib/enlightenment/modules/conf_profiles/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_profiles/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_profiles/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_screensaver/
lib/enlightenment/modules/conf_screensaver/e-module-conf_screensaver.edj
lib/enlightenment/modules/conf_screensaver/module.desktop
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_screensaver/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_shelves/
lib/enlightenment/modules/conf_shelves/e-module-conf_shelves.edj
lib/enlightenment/modules/conf_shelves/module.desktop
lib/enlightenment/modules/conf_shelves/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_shelves/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_shelves/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_startup/
lib/enlightenment/modules/conf_startup/e-module-conf_startup.edj
lib/enlightenment/modules/conf_startup/module.desktop
lib/enlightenment/modules/conf_startup/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_startup/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_startup/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_theme/
lib/enlightenment/modules/conf_theme/e-module-conf_theme.edj
lib/enlightenment/modules/conf_theme/module.desktop
lib/enlightenment/modules/conf_theme/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_theme/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_theme/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_transitions/
lib/enlightenment/modules/conf_transitions/e-module-conf_transitions.edj
lib/enlightenment/modules/conf_transitions/module.desktop
lib/enlightenment/modules/conf_transitions/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_transitions/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_transitions/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_wallpaper/
lib/enlightenment/modules/conf_wallpaper/e-module-conf_wallpaper.edj
lib/enlightenment/modules/conf_wallpaper/module.desktop
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_wallpaper/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_window_display/
lib/enlightenment/modules/conf_window_display/e-module-conf_window_display.edj
lib/enlightenment/modules/conf_window_display/module.desktop
lib/enlightenment/modules/conf_window_display/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_window_display/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_window_display/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_window_focus/
lib/enlightenment/modules/conf_window_focus/e-module-conf_window_focus.edj
lib/enlightenment/modules/conf_window_focus/module.desktop
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_window_focus/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_window_manipulation/
lib/enlightenment/modules/conf_window_manipulation/e-module-conf_winmanip.edj
lib/enlightenment/modules/conf_window_manipulation/module.desktop
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_window_manipulation/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/conf_winlist/
lib/enlightenment/modules/conf_winlist/e-module-conf_winlist.edj
lib/enlightenment/modules/conf_winlist/module.desktop
lib/enlightenment/modules/conf_winlist/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/conf_winlist/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/conf_winlist/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/cpufreq/
lib/enlightenment/modules/cpufreq/e-module-cpufreq.edj
lib/enlightenment/modules/cpufreq/module.desktop
lib/enlightenment/modules/cpufreq/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/cpufreq/openbsd4.2-${MACHINE_ARCH}/freqset
lib/enlightenment/modules/cpufreq/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/cpufreq/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/dropshadow/
lib/enlightenment/modules/dropshadow/e-module-dropshadow.edj
lib/enlightenment/modules/dropshadow/module.desktop
lib/enlightenment/modules/dropshadow/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/dropshadow/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/dropshadow/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/exebuf/
lib/enlightenment/modules/exebuf/e-module-exebuf.edj
lib/enlightenment/modules/exebuf/module.desktop
lib/enlightenment/modules/exebuf/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/exebuf/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/exebuf/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/fileman/
lib/enlightenment/modules/fileman/e-module-fileman.edj
lib/enlightenment/modules/fileman/module.desktop
lib/enlightenment/modules/fileman/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/fileman/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/fileman/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/ibar/
lib/enlightenment/modules/ibar/e-module-ibar.edj
lib/enlightenment/modules/ibar/module.desktop
lib/enlightenment/modules/ibar/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/ibar/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/ibar/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/ibox/
lib/enlightenment/modules/ibox/e-module-ibox.edj
lib/enlightenment/modules/ibox/module.desktop
lib/enlightenment/modules/ibox/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/ibox/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/ibox/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/layout/
lib/enlightenment/modules/layout/e-module-layout.edj
lib/enlightenment/modules/layout/module.desktop
lib/enlightenment/modules/layout/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/layout/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/layout/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/msgbus_lang/
lib/enlightenment/modules/msgbus_lang/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/pager/
lib/enlightenment/modules/pager/e-module-pager.edj
lib/enlightenment/modules/pager/module.desktop
lib/enlightenment/modules/pager/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/pager/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/pager/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/start/
lib/enlightenment/modules/start/e-module-start.edj
lib/enlightenment/modules/start/module.desktop
lib/enlightenment/modules/start/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/start/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/start/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/temperature/
lib/enlightenment/modules/temperature/e-module-temperature.edj
lib/enlightenment/modules/temperature/module.desktop
lib/enlightenment/modules/temperature/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/temperature/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/temperature/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/winlist/
lib/enlightenment/modules/winlist/e-module-winlist.edj
lib/enlightenment/modules/winlist/module.desktop
lib/enlightenment/modules/winlist/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/winlist/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/winlist/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/wizard/
lib/enlightenment/modules/wizard/e-module-wizard.edj
lib/enlightenment/modules/wizard/module.desktop
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/module.a
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/module.la
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/page_000.a
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/page_000.la
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/page_010.a
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/page_010.la
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/page_020.a
lib/enlightenment/modules/wizard/openbsd4.2-${MACHINE_ARCH}/page_020.la
lib/enlightenment/preload/
lib/enlightenment/preload/e_precache.a
lib/enlightenment/preload/e_precache.la
share/enlightenment/
share/enlightenment/AUTHORS
share/enlightenment/COPYING
share/enlightenment/data/
share/enlightenment/data/backgrounds/
share/enlightenment/data/backgrounds/Blue_Sky_Tree.edj
share/enlightenment/data/backgrounds/Cracked_Earth.edj
share/enlightenment/data/backgrounds/Ivy_Wall.edj
share/enlightenment/data/backgrounds/Ladybug.edj
share/enlightenment/data/fonts/
share/enlightenment/data/fonts/Vera.COPYING
share/enlightenment/data/fonts/Vera.ttf
share/enlightenment/data/fonts/VeraBI.ttf
share/enlightenment/data/fonts/VeraBd.ttf
share/enlightenment/data/fonts/VeraIt.ttf
share/enlightenment/data/fonts/VeraMoBI.ttf
share/enlightenment/data/fonts/VeraMoBd.ttf
share/enlightenment/data/fonts/VeraMoIt.ttf
share/enlightenment/data/fonts/VeraMono.ttf
share/enlightenment/data/fonts/VeraSe.ttf
share/enlightenment/data/fonts/VeraSeBd.ttf
share/enlightenment/data/fonts/fonts.alias
share/enlightenment/data/fonts/fonts.dir
share/enlightenment/data/icons/
share/enlightenment/data/icons/audio_player.png
share/enlightenment/data/icons/audio_player2.png
share/enlightenment/data/icons/image_viewer.png
share/enlightenment/data/icons/mail_client.png
share/enlightenment/data/icons/text_editor.png
share/enlightenment/data/icons/video_player.png
share/enlightenment/data/icons/web_browser.png
share/enlightenment/data/icons/xterm.png
share/enlightenment/data/images/
share/enlightenment/data/images/enlightenment.png
share/enlightenment/data/images/test.edj
share/enlightenment/data/images/test.jpg
share/enlightenment/data/images/test.png
share/enlightenment/data/init/
share/enlightenment/data/init/default.edj
share/enlightenment/data/input_methods/
share/enlightenment/data/input_methods/iiimf.imc
share/enlightenment/data/input_methods/scim.imc
share/enlightenment/data/input_methods/uim.imc
share/enlightenment/data/other/
share/enlightenment/data/other/desktop_files.tar.gz
share/enlightenment/data/other/desktop_order.tar.gz
share/enlightenment/data/other/efm_favorites.tar.gz
share/enlightenment/data/other/icon_example.tar.gz
share/enlightenment/data/themes/
share/enlightenment/data/themes/default.edj
share/enlightenment/doc/
share/enlightenment/doc/FDO.txt
share/enlightenment/doc/cache.txt
share/enlightenment/doc/documentation.html
share/enlightenment/doc/enlightenment.png
share/locale/
share/locale/bg/
share/locale/bg/LC_MESSAGES/
share/locale/bg/LC_MESSAGES/enlightenment.mo
share/locale/ca/
share/locale/ca/LC_MESSAGES/
share/locale/ca/LC_MESSAGES/enlightenment.mo
share/locale/de/
share/locale/de/LC_MESSAGES/
share/locale/de/LC_MESSAGES/enlightenment.mo
share/locale/eo/
share/locale/eo/LC_MESSAGES/
share/locale/eo/LC_MESSAGES/enlightenment.mo
share/locale/fr/
share/locale/fr/LC_MESSAGES/
share/locale/fr/LC_MESSAGES/enlightenment.mo
share/locale/hu/
share/locale/hu/LC_MESSAGES/
share/locale/hu/LC_MESSAGES/enlightenment.mo
share/locale/it/
share/locale/it/LC_MESSAGES/
share/locale/it/LC_MESSAGES/enlightenment.mo
share/locale/ja/
share/locale/ja/LC_MESSAGES/
share/locale/ja/LC_MESSAGES/enlightenment.mo
share/locale/ko/
share/locale/ko/LC_MESSAGES/
share/locale/ko/LC_MESSAGES/enlightenment.mo
share/locale/pt_BR/
share/locale/pt_BR/LC_MESSAGES/
share/locale/pt_BR/LC_MESSAGES/enlightenment.mo
share/locale/ru/
share/locale/ru/LC_MESSAGES/
share/locale/ru/LC_MESSAGES/enlightenment.mo
share/locale/sl/
share/locale/sl/LC_MESSAGES/
share/locale/sl/LC_MESSAGES/enlightenment.mo
share/locale/zh_TW/
share/locale/zh_TW/LC_MESSAGES/
share/locale/zh_TW/LC_MESSAGES/enlightenment.mo
share/xsessions/
share/xsessions/enlightenment.desktop

47
x11/e17/ecore/Makefile Normal file
View File

@ -0,0 +1,47 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
COMMENT= core event/X abstraction layer
DISTNAME= ecore-20071107
SO_VERSION= 0.0
# NOTE: Must bump minor version if any shlib's are removed from the
# components dir to avoid pkg_add -r issues.
.for _lib in ecore ecore_con ecore_config ecore_evas ecore_file \
ecore_ipc ecore_job ecore_txt ecore_x
SHARED_LIBS+= ${_lib} ${SO_VERSION}
.endfor
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
Xinerama Xp Xrandr Xrender Xss c crypto eet expat fontconfig \
freetype idn jpeg m ssl usbhid z
MODULES= devel/gettext
USE_X11= Yes
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
LIB_DEPENDS= SDL::devel/sdl \
curl::net/curl \
evas::x11/e17/evas
CONFIGURE_STYLE= automake
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
SSL_CFLAGS="-I/usr/include" SSL_LIBS="-lssl"
CONFIGURE_ARGS= --with-iconv-link=-liconv
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/ecore/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/ecore-20071107.tar.gz) = okKO8p0fzs9yCo3bf8ANIA==
RMD160 (e17/ecore-20071107.tar.gz) = kE8HcfUaQ4YCm/pnoXVjKhGjmOg=
SHA1 (e17/ecore-20071107.tar.gz) = xQLnndK8rPu7RdpXNrXrpee42J8=
SHA256 (e17/ecore-20071107.tar.gz) = VabyMhMs45zk5AATkmiL7fQtH1iZIed2ApnX9Sl14Fo=
SIZE (e17/ecore-20071107.tar.gz) = 3847925

5
x11/e17/ecore/pkg/DESCR Normal file
View File

@ -0,0 +1,5 @@
Ecore is the core event abstraction layer and X abstraction layer that
makes doing selections, Xdnd, general X stuff, and event loops, timeouts
and idle handlers fast, optimized, and convenient. It's a separate
library so anyone can make use of the work put into Ecore to make this
job easy for applications.

View File

@ -0,0 +1,10 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
@lib lib/libecore.so.${LIBecore_VERSION}
@lib lib/libecore_con.so.${LIBecore_con_VERSION}
@lib lib/libecore_config.so.${LIBecore_config_VERSION}
@lib lib/libecore_evas.so.${LIBecore_evas_VERSION}
@lib lib/libecore_file.so.${LIBecore_file_VERSION}
@lib lib/libecore_ipc.so.${LIBecore_ipc_VERSION}
@lib lib/libecore_job.so.${LIBecore_job_VERSION}
@lib lib/libecore_txt.so.${LIBecore_txt_VERSION}
@lib lib/libecore_x.so.${LIBecore_x_VERSION}

44
x11/e17/ecore/pkg/PLIST Normal file
View File

@ -0,0 +1,44 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:37 dlg Exp $
%%SHARED%%
bin/ecore_config
include/Ecore.h
include/Ecore_Con.h
include/Ecore_Config.h
include/Ecore_Data.h
include/Ecore_Evas.h
include/Ecore_File.h
include/Ecore_Ipc.h
include/Ecore_Job.h
include/Ecore_Str.h
include/Ecore_Txt.h
include/Ecore_X.h
include/Ecore_X_Atoms.h
include/Ecore_X_Cursor.h
lib/libecore.a
lib/libecore.la
lib/libecore_con.a
lib/libecore_con.la
lib/libecore_config.a
lib/libecore_config.la
lib/libecore_evas.a
lib/libecore_evas.la
lib/libecore_file.a
lib/libecore_file.la
lib/libecore_ipc.a
lib/libecore_ipc.la
lib/libecore_job.a
lib/libecore_job.la
lib/libecore_txt.a
lib/libecore_txt.la
lib/libecore_x.a
lib/libecore_x.la
lib/pkgconfig/
lib/pkgconfig/ecore-con.pc
lib/pkgconfig/ecore-config.pc
lib/pkgconfig/ecore-evas.pc
lib/pkgconfig/ecore-file.pc
lib/pkgconfig/ecore-ipc.pc
lib/pkgconfig/ecore-job.pc
lib/pkgconfig/ecore-txt.pc
lib/pkgconfig/ecore-x.pc
lib/pkgconfig/ecore.pc

30
x11/e17/edb/Makefile Normal file
View File

@ -0,0 +1,30 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= databse conveneince library based on db 2.7.7
DISTNAME= edb-20071107
SHARED_LIBS += edb 0.0 # .1.5
MAINTAINER= Laurent FANIS <laurent@humppa.nl>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c ncurses
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
CONFIGURE_STYLE= automake autoconf
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/edb/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/edb-20071107.tar.gz) = YBSk3tnkqu3mmukrTHCu9A==
RMD160 (e17/edb-20071107.tar.gz) = Mxx3q0Gb8K0UgsYes3Nmf9fQ5bY=
SHA1 (e17/edb-20071107.tar.gz) = fokJAXnnznC5CH/xYsjQgtgWFoU=
SHA256 (e17/edb-20071107.tar.gz) = LocxKCG+04flB0uVoMXVG0/U5RsaRaa8A3ee5YNfvMs=
SIZE (e17/edb-20071107.tar.gz) = 333923

6
x11/e17/edb/pkg/DESCR Normal file
View File

@ -0,0 +1,6 @@
This is a database conveneince library base on db 2.7.7 from
http://www.sleepycat.com. It is intended to make accessing database
information portable, easy, fast and efficient as well as bypass the
proplem of libdb continuously changing formats. Read the Edb.h header
for inormation on how to use the calls and the test directory for sample
code.

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
@lib lib/libedb.so.${LIBedb_VERSION}

9
x11/e17/edb/pkg/PLIST Normal file
View File

@ -0,0 +1,9 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/edb_ed
bin/edb_vt_ed
include/Edb.h
lib/libedb.a
lib/libedb.la
lib/pkgconfig/
lib/pkgconfig/edb.pc

36
x11/e17/edje/Makefile Normal file
View File

@ -0,0 +1,36 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= complex graphical design & layout library
DISTNAME= edje-20071107
SHARED_LIBS += edje 0.0 # .5.0
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
Xinerama Xp Xrandr Xrender Xss c eet evas expat fontconfig \
freetype iconv jpeg m pthread usbhid z
USE_X11= Yes
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
LIB_DEPENDS= SDL::devel/sdl \
ecore,ecore_evas,ecore_job,ecore_txt,ecore_x::x11/e17/ecore \
embryo::x11/e17/embryo
CONFIGURE_STYLE= automake
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/edje/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/edje-20071107.tar.gz) = KD+qZTES11M6DBDI51TmCw==
RMD160 (e17/edje-20071107.tar.gz) = tBcqJzLAEV0w4O/2bIzf9mU2A3g=
SHA1 (e17/edje-20071107.tar.gz) = goHNd/ZJLk2qc8js/XsqCllBlqw=
SHA256 (e17/edje-20071107.tar.gz) = 5ZK1+k99XMvw2EP0jj4RIBkVPUUOhWNbv2N/tQ/dx6U=
SIZE (e17/edje-20071107.tar.gz) = 1140476

1
x11/e17/edje/pkg/DESCR Normal file
View File

@ -0,0 +1 @@
Edje is a complex graphical design & layout library.

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
@lib lib/libedje.so.${LIBedje_VERSION}

13
x11/e17/edje/pkg/PLIST Normal file
View File

@ -0,0 +1,13 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/edje_cc
bin/edje_decc
bin/edje_recc
include/Edje.h
lib/libedje.a
lib/libedje.la
lib/pkgconfig/
lib/pkgconfig/edje.pc
share/edje/
share/edje/include/
share/edje/include/edje.inc

33
x11/e17/eet/Makefile Normal file
View File

@ -0,0 +1,33 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= library to write an arbitary set of chunks of data to a file
DISTNAME= eet-20071107
PKGNAME= ${DISTNAME}p1
SHARED_LIBS += eet 0.0 # .9.10
HOMEPAGE= http://docs.enlightenment.org/api/eet/html/
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c m z
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
LIB_DEPENDS= jpeg::graphics/jpeg
CONFIGURE_STYLE= automake
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/eet/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/eet-20071107.tar.gz) = IOS1WXEeqZTgKG66KjjT6Q==
RMD160 (e17/eet-20071107.tar.gz) = Pml5NPruJJmAby+TB86jhJfRT0Q=
SHA1 (e17/eet-20071107.tar.gz) = NV3MbDJ2S6fE1jtfBpIIsXX+jTU=
SHA256 (e17/eet-20071107.tar.gz) = ptwIUkiFipfckRAmm3mprwm9QWnCZZFS9wnJrlzj1S4=
SIZE (e17/eet-20071107.tar.gz) = 1065081

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-src_lib_eet_lib_c,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
--- src/lib/eet_lib.c.orig Mon Nov 12 11:14:04 2007
+++ src/lib/eet_lib.c Mon Nov 12 11:15:11 2007
@@ -497,6 +497,10 @@ eet_open(const char *file, Eet_File_Mode mode)
else
return NULL;
}
+ else if (file_stat.st_size == 0)
+ {
+ return NULL;
+ }
/* We found one */
if (ef && (file_stat.st_mtime != ef->mtime))

5
x11/e17/eet/pkg/DESCR Normal file
View File

@ -0,0 +1,5 @@
EET is a tiny library designed to write an arbitary set of chunks of
data to a file and optionally compress each chunk (very much like a zip
file) and allow fast random-access reading of the file later on. It
does not do zip as a zip itself has more complexity than is needed, and
it was much simpler to impliment this once here.

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
@lib lib/libeet.so.${LIBeet_VERSION}

8
x11/e17/eet/pkg/PLIST Normal file
View File

@ -0,0 +1,8 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/eet
include/Eet.h
lib/libeet.a
lib/libeet.la
lib/pkgconfig/
lib/pkgconfig/eet.pc

34
x11/e17/efreet/Makefile Normal file
View File

@ -0,0 +1,34 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= implementations of freedesktop.org specifications
DISTNAME= efreet-20071107
SHARED_LIBS += efreet 0.0 # .0.3
SHARED_LIBS += efreet_mime 0.0 # .0.0
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c crypto curl idn m ssl z
MODULES= devel/gettext
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
LIB_DEPENDS= ecore,ecore_file::x11/e17/ecore
RUN_DEPENDS= ::devel/desktop-file-utils
CONFIGURE_STYLE= automake
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/efreet/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/efreet-20071107.tar.gz) = UxEHBPzOsBVABUqaQQmv3g==
RMD160 (e17/efreet-20071107.tar.gz) = EGDOtRxiUiw2mImtJYoCA1H5ybM=
SHA1 (e17/efreet-20071107.tar.gz) = ibyL5HZuSke+gh3HXtHNl8VtWj8=
SHA256 (e17/efreet-20071107.tar.gz) = W4C7MYfuboXNGL6zN4plwXcxzy4AI5gdSjf/zGAd87I=
SIZE (e17/efreet-20071107.tar.gz) = 310625

16
x11/e17/efreet/pkg/DESCR Normal file
View File

@ -0,0 +1,16 @@
Efreet is an implementation of the following specifications from
freedesktop.org:
* Base Directory - Locations for system and user specific
desktop configuration files.
* Desktop Entries - The metadata associated with the applications
installed on a system.
* Application Menus - The arrangement of available applications
into a hierarchical menu.
* Icon Themes - A means of associating icons with various objects
on the desktop in a themable fashion.
By following these specifications, Enlightenment 0.17 uses the same
format for describing application launchers, menus and icon themes as
the Gnome, KDE and XFCE Desktop Environments. A system must only provide
a single set of this data for use with any of these desktops.

View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
@lib lib/libefreet.so.${LIBefreet_VERSION}
@lib lib/libefreet_mime.so.${LIBefreet_mime_VERSION}

38
x11/e17/efreet/pkg/PLIST Normal file
View File

@ -0,0 +1,38 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/efreet_alloc
bin/efreet_cache_test
bin/efreet_menu_alloc
bin/efreet_spec_test
bin/efreet_test
include/efreet/
include/efreet/Efreet.h
include/efreet/Efreet_Mime.h
include/efreet/efreet_base.h
include/efreet/efreet_desktop.h
include/efreet/efreet_icon.h
include/efreet/efreet_ini.h
include/efreet/efreet_menu.h
include/efreet/efreet_utils.h
lib/libefreet.a
lib/libefreet.la
lib/libefreet_mime.a
lib/libefreet_mime.la
lib/pkgconfig/
lib/pkgconfig/efreet-mime.pc
lib/pkgconfig/efreet.pc
share/efreet/
share/efreet/test/
share/efreet/test/entry
share/efreet/test/entry.png
share/efreet/test/long.ini
share/efreet/test/preferences.menu
share/efreet/test/sub/
share/efreet/test/sub/test.desktop
share/efreet/test/test.desktop
share/efreet/test/test.ini
share/efreet/test/test.menu
share/efreet/test/test_menu_slash_bad.menu
share/efreet/test/test_type.desktop
@exec %D/bin/update-desktop-database
@unexec %D/bin/update-desktop-database

28
x11/e17/embryo/Makefile Normal file
View File

@ -0,0 +1,28 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= C like scripting language used in the Enlightenment project
DISTNAME= embryo-20071107
SHARED_LIBS += embryo 0.0 # .9.1
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c m
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
CONFIGURE_STYLE= automake
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/embryo/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/embryo-20071107.tar.gz) = OijCqVx51oM2nCZY+t0/SQ==
RMD160 (e17/embryo-20071107.tar.gz) = vdRirAfbXGaghFETG7LwxakOrX0=
SHA1 (e17/embryo-20071107.tar.gz) = +/kAL3p7ozSnaMGReqmmGx+7iCY=
SHA256 (e17/embryo-20071107.tar.gz) = VvYrfpF/EReFQUFopzFtThWNU18CBlrLdfyD5TQOnnE=
SIZE (e17/embryo-20071107.tar.gz) = 1173323

6
x11/e17/embryo/pkg/DESCR Normal file
View File

@ -0,0 +1,6 @@
Embryo implements a C like scripting language used in various parts of
the Enlightenment project, namely Edje. Embryo's scripting language is
based on CompuPhase's Small language that was introduced in Dr. Dobb's
Journal in 1999. Embryo allows scripting capabilities in places that
otherwise wouldn't support basic programming structures such as in Edje
EDCs.

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
@lib lib/libembryo.so.${LIBembryo_VERSION}

11
x11/e17/embryo/pkg/PLIST Normal file
View File

@ -0,0 +1,11 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/embryo_cc
include/Embryo.h
lib/libembryo.a
lib/libembryo.la
lib/pkgconfig/
lib/pkgconfig/embryo.pc
share/embryo/
share/embryo/include/
share/embryo/include/default.inc

33
x11/e17/epeg/Makefile Normal file
View File

@ -0,0 +1,33 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= immensly fast JPEG thumbnailer library
DISTNAME= epeg-20071107
HOMEPAGE= http://docs.enlightenment.org/api/epeg/html/
SHARED_LIBS= epeg 0.0 # .0.9
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
LIB_DEPENDS= jpeg::graphics/jpeg
CONFIGURE_STYLE= automake autoconf
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.include <bsd.port.mk>

5
x11/e17/epeg/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/epeg-20071107.tar.gz) = sL8lwH3y+Q7WdLrWSBbLBQ==
RMD160 (e17/epeg-20071107.tar.gz) = v8s+JuPiiEwQzL3tGFwiUsLcFM0=
SHA1 (e17/epeg-20071107.tar.gz) = zDXZm0rkwalQf/GQVA3kf0fBY4s=
SHA256 (e17/epeg-20071107.tar.gz) = 90M/ClC4hWy6TirGDX4/qNq09X6MNCm4p7q8GV5rbiw=
SIZE (e17/epeg-20071107.tar.gz) = 1036624

4
x11/e17/epeg/pkg/DESCR Normal file
View File

@ -0,0 +1,4 @@
Epeg is a convenience library API to using libjpeg to load JPEG images
destined to be turned into thumbnails of the original, saving
information with these thumbnails, retreiving it and managing to load
the image ready for scaling with the minimum of fuss and CPU overhead.

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
@lib lib/libepeg.so.${LIBepeg_VERSION}

8
x11/e17/epeg/pkg/PLIST Normal file
View File

@ -0,0 +1,8 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/epeg
include/Epeg.h
lib/libepeg.a
lib/libepeg.la
lib/pkgconfig/
lib/pkgconfig/epeg.pc

3
x11/e17/etk/Broken Normal file
View File

@ -0,0 +1,3 @@
no fotns written is that normal?
fr.mo is not foudn anywhere!! his hapens when in Make install in po
i think it is fr.po, someone made a typo ?

55
x11/e17/etk/Makefile Normal file
View File

@ -0,0 +1,55 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= toolkit based on the EFL
DISTNAME= etk
SHARED_LIB += etk 0.0
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= devel/gettext
WANTLIB= X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
Xinerama Xp Xrandr Xrender Xss c crypto curl ecore \
ecore_con ecore_evas ecore_file ecore_ipc ecore_job \
ecore_txt ecore_x eet embryo evas expat fontconfig \
freetype idn jpeg m pthread ssl usbhid z
LIB_DEPENDS= evas::x11/e17/evas \
ecore::x11/e17/ecore \
edje::x11/e17/edje
RUN_DEPENDS= ::devel/desktop-file-utils
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
CONFIGURE_STYLE= automake autoconf
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
E_CFLAGS="-I${LOCALBASE}/include/efreet" \
E_LIBS="-lssl -lcrypto -leet -levas -lecore -lecore_ipc -ledje -lefreet -lefreet_mime"
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
#post-install:
# ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/enlightenment
# mv ${WRKINST}/${SYSCONFDIR}/* ${PREFIX}/share/examples/
.if ${MACHINE_ARCH} == "amd64"
E_ARCH= x86_64
.else
E_ARCH= ${MACHINE_ARCH}
.endif
SUBST_VARS= E_ARCH
.include <bsd.port.mk>

5
x11/e17/etk/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/etk.tar.gz) = jSjC7WBRXaOBGONegR0elw==
RMD160 (e17/etk.tar.gz) = vL+ezguatPBrjRQQzeXpQpNf4po=
SHA1 (e17/etk.tar.gz) = ptcW3qOGv5nXjdO4NWsiHc/AJ24=
SHA256 (e17/etk.tar.gz) = STlyi5KnOSC4IDor1hnzs0c26TvAuHN4TOZOo1mZboY=
SIZE (e17/etk.tar.gz) = 2391135

0
x11/e17/etk/pkg/DESCR Normal file
View File

View File

@ -0,0 +1,7 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
lib/etk/engines/ecore_evas.so
lib/etk/engines/ecore_evas_gl_x11.so
lib/etk/engines/ecore_evas_software_x11.so
lib/etk/engines/ecore_evas_software_x11_16.so
lib/etk/engines/ecore_evas_x11.so
@lib lib/libetk.so.${LIBetk_VERSION}

133
x11/e17/etk/pkg/PLIST Normal file
View File

@ -0,0 +1,133 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
bin/etk_prefs
bin/etk_test
include/Etk_Engine_Ecore_Evas.h
include/Etk_Engine_Ecore_Evas_X11.h
include/etk/
include/etk/Etk.h
include/etk/etk_alignment.h
include/etk/etk_argument.h
include/etk/etk_bin.h
include/etk/etk_box.h
include/etk/etk_button.h
include/etk/etk_cache.h
include/etk/etk_canvas.h
include/etk/etk_check_button.h
include/etk/etk_colorpicker.h
include/etk/etk_combobox.h
include/etk/etk_combobox_entry.h
include/etk/etk_config.h
include/etk/etk_container.h
include/etk/etk_dialog.h
include/etk/etk_dnd.h
include/etk/etk_drag.h
include/etk/etk_editable.h
include/etk/etk_embed.h
include/etk/etk_engine.h
include/etk/etk_entry.h
include/etk/etk_event.h
include/etk/etk_filechooser_widget.h
include/etk/etk_fixed.h
include/etk/etk_frame.h
include/etk/etk_iconbox.h
include/etk/etk_image.h
include/etk/etk_label.h
include/etk/etk_main.h
include/etk/etk_marshallers.h
include/etk/etk_mdi_area.h
include/etk/etk_mdi_window.h
include/etk/etk_menu.h
include/etk/etk_menu_bar.h
include/etk/etk_menu_item.h
include/etk/etk_menu_shell.h
include/etk/etk_message_dialog.h
include/etk/etk_notebook.h
include/etk/etk_object.h
include/etk/etk_paned.h
include/etk/etk_popup_window.h
include/etk/etk_progress_bar.h
include/etk/etk_property.h
include/etk/etk_radio_button.h
include/etk/etk_range.h
include/etk/etk_scrollbar.h
include/etk/etk_scrolled_view.h
include/etk/etk_selection.h
include/etk/etk_separator.h
include/etk/etk_shadow.h
include/etk/etk_signal.h
include/etk/etk_signal_callback.h
include/etk/etk_slider.h
include/etk/etk_spinner.h
include/etk/etk_statusbar.h
include/etk/etk_stock.h
include/etk/etk_string.h
include/etk/etk_table.h
include/etk/etk_text_view.h
include/etk/etk_text_view2.h
include/etk/etk_textblock.h
include/etk/etk_textblock2.h
include/etk/etk_theme.h
include/etk/etk_toggle_button.h
include/etk/etk_tool_button.h
include/etk/etk_toolbar.h
include/etk/etk_tooltips.h
include/etk/etk_toplevel.h
include/etk/etk_tree.h
include/etk/etk_tree_model.h
include/etk/etk_type.h
include/etk/etk_types.h
include/etk/etk_utils.h
include/etk/etk_viewport.h
include/etk/etk_widget.h
include/etk/etk_window.h
lib/etk/
lib/etk/engines/
lib/etk/engines/ecore_evas.a
lib/etk/engines/ecore_evas.la
lib/etk/engines/ecore_evas_gl_x11.a
lib/etk/engines/ecore_evas_gl_x11.la
lib/etk/engines/ecore_evas_software_x11.a
lib/etk/engines/ecore_evas_software_x11.la
lib/etk/engines/ecore_evas_software_x11_16.a
lib/etk/engines/ecore_evas_software_x11_16.la
lib/etk/engines/ecore_evas_x11.a
lib/etk/engines/ecore_evas_x11.la
lib/libetk.a
lib/libetk.la
lib/pkgconfig/
lib/pkgconfig/etk.pc
share/etk/
share/etk/fonts/
share/etk/fonts/Vera.COPYING
share/etk/fonts/Vera.ttf
share/etk/fonts/VeraBI.ttf
share/etk/fonts/VeraBd.ttf
share/etk/fonts/VeraIt.ttf
share/etk/fonts/fonts.alias
share/etk/fonts/fonts.dir
share/etk/icons/
share/etk/icons/default.edj
share/etk/images/
share/etk/images/1star.png
share/etk/images/2stars.png
share/etk/images/3stars.png
share/etk/images/backdrop.png
share/etk/images/e_icon.png
share/etk/images/e_logo.png
share/etk/images/panel.png
share/etk/images/panel_shadow.png
share/etk/images/panel_top.png
share/etk/images/picture1.png
share/etk/images/picture2.png
share/etk/images/picture3.png
share/etk/images/picture4.png
share/etk/images/picture5.png
share/etk/images/picture6.png
share/etk/images/right_arrow.png
share/etk/images/test.png
share/etk/themes/
share/etk/themes/default.edj
share/etk/wm/
share/etk/wm/default.edj
share/locale/fr/LC_MESSAGES/etk.mo

48
x11/e17/evas/Makefile Normal file
View File

@ -0,0 +1,48 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
COMMENT= canvas API for X
DISTNAME= evas-20071107
PKGNAME= ${DISTNAME}p1
SHARED_LIBS += evas 0.0 # .9.9
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xau Xdmcp Xext Xrender expat fontconfig freetype \
jpeg m z
USE_X11= Yes
USE_LIBTOOL= Yes
AUTOCONF_VERSION= 2.61
AUTOMAKE_VERSION= 1.9
AUTOMAKE_ENV= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
LIB_DEPENDS= gif::graphics/libungif \
png::graphics/png \
tiff::graphics/tiff \
edb::x11/e17/edb \
eet::x11/e17/eet
CONFIGURE_STYLE= automake
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
CONFIGURE_ARGS= --disable-image-loader-svg --enable-image-loader-edb
post-patch:
cd ${WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} NOCONFIGURE=true \
${SH} autogen.sh
.if ${MACHINE_ARCH} == "amd64"
EVAS_ARCH= x86_64
.else
EVAS_ARCH= ${MACHINE_ARCH}
.endif
SUBST_VARS= EVAS_ARCH
.include <bsd.port.mk>

5
x11/e17/evas/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (e17/evas-20071107.tar.gz) = 1I+VzCjirqBIQ5vIxwoquA==
RMD160 (e17/evas-20071107.tar.gz) = VSDCaP/aIGCD7FDQhW2wkbJBtbQ=
SHA1 (e17/evas-20071107.tar.gz) = s/2DLcu3aW1XKMTpDky4TfyTn5A=
SHA256 (e17/evas-20071107.tar.gz) = kZmqsxpVO19HSYMRmcC2zCfS57p56NGHjiJiqT5KRcs=
SIZE (e17/evas-20071107.tar.gz) = 3886824

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_lib_include_evas_mmx_h,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
--- src/lib/include/evas_mmx.h.orig Wed Nov 7 21:29:03 2007
+++ src/lib/include/evas_mmx.h Wed Nov 7 21:29:13 2007
@@ -66,6 +66,8 @@
#ifndef _MMX_H
#define _MMX_H
+#include <stdint.h>
+
/* Warning: at this writing, the version of GAS packaged
with most Linux distributions does not handle the
parallel AND operation mnemonic correctly. If the

4
x11/e17/evas/pkg/DESCR Normal file
View File

@ -0,0 +1,4 @@
Evas is a hardware-accelerated canvas API for X that can draw
anti-aliased text, smooth super and sub-sampled images, alpha-blend, as
well as drop down to using normal X11 primitives such as pixmaps, lines
and rectangles for speed if your CPU or graphics hardware are too slow.

View File

@ -0,0 +1,18 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
lib/evas/modules/engines/buffer/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/engines/software_generic/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/engines/software_x11/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/engines/xrender_x11/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/edb/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/eet/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/gif/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/jpeg/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/png/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/tiff/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/loaders/xpm/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/savers/edb/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/savers/eet/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/savers/jpeg/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/savers/png/openbsd4.2-${EVAS_ARCH}/module.so
lib/evas/modules/savers/tiff/openbsd4.2-${EVAS_ARCH}/module.so
@lib lib/libevas.so.${LIBevas_VERSION}

82
x11/e17/evas/pkg/PLIST Normal file
View File

@ -0,0 +1,82 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/11/30 16:04:39 dlg Exp $
%%SHARED%%
include/Evas.h
include/Evas_Engine_Buffer.h
include/Evas_Engine_Software_X11.h
include/Evas_Engine_XRender_X11.h
lib/evas/
lib/evas/modules/
lib/evas/modules/engines/
lib/evas/modules/engines/buffer/
lib/evas/modules/engines/buffer/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/engines/buffer/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/engines/buffer/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/engines/software_generic/
lib/evas/modules/engines/software_generic/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/engines/software_generic/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/engines/software_generic/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/engines/software_x11/
lib/evas/modules/engines/software_x11/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/engines/software_x11/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/engines/software_x11/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/engines/xrender_x11/
lib/evas/modules/engines/xrender_x11/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/engines/xrender_x11/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/engines/xrender_x11/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/
lib/evas/modules/loaders/edb/
lib/evas/modules/loaders/edb/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/edb/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/edb/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/eet/
lib/evas/modules/loaders/eet/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/eet/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/eet/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/gif/
lib/evas/modules/loaders/gif/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/gif/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/gif/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/jpeg/
lib/evas/modules/loaders/jpeg/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/jpeg/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/jpeg/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/png/
lib/evas/modules/loaders/png/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/png/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/png/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/tiff/
lib/evas/modules/loaders/tiff/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/tiff/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/tiff/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/loaders/xpm/
lib/evas/modules/loaders/xpm/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/loaders/xpm/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/loaders/xpm/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/savers/
lib/evas/modules/savers/edb/
lib/evas/modules/savers/edb/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/savers/edb/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/savers/edb/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/savers/eet/
lib/evas/modules/savers/eet/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/savers/eet/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/savers/eet/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/savers/jpeg/
lib/evas/modules/savers/jpeg/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/savers/jpeg/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/savers/jpeg/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/savers/png/
lib/evas/modules/savers/png/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/savers/png/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/savers/png/openbsd4.2-${EVAS_ARCH}/module.la
lib/evas/modules/savers/tiff/
lib/evas/modules/savers/tiff/openbsd4.2-${EVAS_ARCH}/
lib/evas/modules/savers/tiff/openbsd4.2-${EVAS_ARCH}/module.a
lib/evas/modules/savers/tiff/openbsd4.2-${EVAS_ARCH}/module.la
lib/libevas.a
lib/libevas.la
lib/pkgconfig/
lib/pkgconfig/evas-software-buffer.pc
lib/pkgconfig/evas-software-x11.pc
lib/pkgconfig/evas-xrender-x11.pc
lib/pkgconfig/evas.pc