remove seed, it's been superseded by gjs and wasn't really picked up by any projects.

This commit is contained in:
jasper 2012-09-28 14:51:11 +00:00
parent b45f8c067f
commit 33730be6ce
10 changed files with 0 additions and 317 deletions

View File

@ -1,63 +0,0 @@
# $OpenBSD: Makefile,v 1.18 2012/05/28 13:04:27 jasper Exp $
COMMENT= GObject JavaScriptCore bridge
GNOME_PROJECT= seed
GNOME_VERSION= 3.2.0
REVISION= 3
SHARED_LIBS += seed-gtk3 0.0 # 0.0
CATEGORIES= devel www
# Seed: LGPLv3
# Examples: BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
HOMEPAGE= http://live.gnome.org/Seed
MODULES= devel/gettext \
x11/gnome
WANTLIB += GL ICE SM X11 Xau Xcomposite Xcursor Xdamage Xdmcp
WANTLIB += Xext Xfixes Xi Xinerama Xrandr Xrender Xt Xxf86vm atk-1.0
WANTLIB += c cairo cairo-gobject dbus-1 dbus-glib-1 drm enchant
WANTLIB += expat ffi fontconfig freetype gailutil-3 gdk-3 gdk_pixbuf-2.0
WANTLIB += gio-2.0 girepository-1.0 glib-2.0 gmodule-2.0 gmp gobject-2.0
WANTLIB += gstapp-0.10 gstbase-0.10 gstinterfaces-0.10 gstpbutils-0.10
WANTLIB += gstreamer-0.10 gstvideo-0.10 gthread-2.0 gtk-3 icudata
WANTLIB += icui18n icuuc jpeg m mpfr pango-1.0 pangocairo-1.0
WANTLIB += pangoft2-1.0 pcre pixman-1 png pthread pthread-stubs
WANTLIB += readline soup-2.4 sqlite3 stdc++ termcap util webkitgtk-3.0
WANTLIB += xcb xcb-render xcb-shm xml2 xslt z javascriptcoregtk-3.0
WANTLIB += geoclue gstaudio-0.10 gstfft-0.10 orc-0.4
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= x11/gnome/js-common
LIB_DEPENDS= devel/gobject-introspection>=1.30.0 \
devel/mpfr>=3.0.1 \
www/webkit,gtk3>=1.6.1v0
# warning: libXxf86vm.so.5.0, needed by /usr/local/lib/libwebkitgtk-3.0.so.3.0, not found
MODGNOME_LDFLAGS= -pthread -L${X11BASE}/lib
CONFIGURE_ARGS+= --enable-readline-module \
--enable-multiprocessing-module \
--enable-sqlite-module \
--enable-example-module \
--enable-dbus-module \
--enable-os-module \
--enable-ffi-module \
--enable-libxml-module \
--enable-gtkbuilder-module \
--enable-cairo-module \
--enable-gettext-module \
--enable-mpfr-module
REGRESS_IS_INTERACTIVE= x11
REGRESS_DEPENDS= ${BASE_PKGPATH}
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (gnome/seed-3.2.0.tar.xz) = PR7KQINLcqVzDdr4pfRrjfIN2ys7OWh9GoTvlm09N8A=
SIZE (gnome/seed-3.2.0.tar.xz) = 682096

View File

@ -1,22 +0,0 @@
$OpenBSD: patch-configure,v 1.3 2011/11/02 19:21:36 jasper Exp $
From 1ec48efc03df9368a59f501dfd1de9c9b15f016c Mon Sep 17 00:00:00 2001
From: Alan Knowles <alan@akbkhome.com>
Date: Fri, 23 Sep 2011 06:08:06 +0000
Subject: fix #659548 - stop CFLAGS getting unconditionally overwritten
--- configure.orig Wed Nov 2 20:19:21 2011
+++ configure Wed Nov 2 20:19:24 2011
@@ -15232,10 +15232,10 @@ fi
if test "x$enable_debug" = "xyes"; then
SEED_DEBUG_CFLAGS="-DSEED_ENABLE_DEBUG -g"
- CFLAGS="-O0 -Wall"
+ CFLAGS="$CFLAGS -O0 -Wall"
else
SEED_DEBUG_CFLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS"
- CFLAGS="-Wall"
+ CFLAGS="$CFLAGS -Wall"
if test "x$need_debug" = "xyes"; then
as_fn_error $? "debug must be enabled in order to enable profiling." "$LINENO" 5

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-libseed_Makefile_in,v 1.3 2011/09/22 08:03:12 ajacoutot Exp $
--- libseed/Makefile.in.orig Thu Sep 22 06:31:35 2011
+++ libseed/Makefile.in Thu Sep 22 09:43:11 2011
@@ -375,7 +375,7 @@ libseed@SEED_GTK_VERSION@_la_LIBADD = \
$(WEBKIT_LIBS) \
$(SEED_PROFILE_LIBS) \
$(SEED_OSX_LIBS) \
- $(FFI_LIBS) -ldl
+ $(FFI_LIBS)
seedheaders_HEADERS = seed.h seed-debug.h seed-module.h
seedheadersdir = $(pkgincludedir)@SEED_GTK_VERSION@

View File

@ -1,31 +0,0 @@
$OpenBSD: patch-modules_gettext_seed-gettext_c,v 1.1.1.1 2011/05/13 09:59:35 jasper Exp $
Fix build if various locale defines are missing.
--- modules/gettext/seed-gettext.c.orig Tue Feb 22 23:44:01 2011
+++ modules/gettext/seed-gettext.c Fri May 13 10:37:48 2011
@@ -313,12 +313,24 @@ seed_module_init(SeedEngine *local_eng)
DEFINE_ENUM_MEMBER(ns_ref, LC_MONETARY);
DEFINE_ENUM_MEMBER(ns_ref, LC_MESSAGES);
DEFINE_ENUM_MEMBER(ns_ref, LC_ALL);
+#ifdef LC_PAPER
DEFINE_ENUM_MEMBER(ns_ref, LC_PAPER);
+#endif
+#ifdef LC_NAME
DEFINE_ENUM_MEMBER(ns_ref, LC_NAME);
+#endif
+#ifdef LC_ADDRESS
DEFINE_ENUM_MEMBER(ns_ref, LC_ADDRESS);
+#endif
+#ifdef LC_TELEPHONE
DEFINE_ENUM_MEMBER(ns_ref, LC_TELEPHONE);
+#endif
+#ifdef LC_MEASUREMENT
DEFINE_ENUM_MEMBER(ns_ref, LC_MEASUREMENT);
+#endif
+#ifdef LC_IDENTIFICATION
DEFINE_ENUM_MEMBER(ns_ref, LC_IDENTIFICATION);
+#endif
DEFINE_ENUM_MEMBER(ns_ref, LC_CTYPE);
return ns_ref;

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-modules_os_seed-os_c,v 1.5 2011/09/21 20:27:31 jasper Exp $
fix #650234 Add FreeBSD/OpenBSD support to os/seed-os.c
from upstream git: 03c808137331be912e9adde997dd2830cf2e5593
--- modules/os/seed-os.c.orig Tue May 17 18:46:37 2011
+++ modules/os/seed-os.c Wed Sep 21 13:17:45 2011
@@ -38,6 +38,8 @@
#include <termios.h>
#if defined(__FreeBSD__)
#include <libutil.h>
+#elif defined(__OpenBSD__)
+#include <util.h>
#endif
#include <unistd.h>

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-modules_readline_Makefile_in,v 1.3 2011/09/22 08:03:12 ajacoutot Exp $
Prevent undefined symbols from readline module.
--- modules/readline/Makefile.in.orig Thu Sep 22 06:31:36 2011
+++ modules/readline/Makefile.in Thu Sep 22 09:43:11 2011
@@ -339,7 +339,7 @@ top_srcdir = @top_srcdir@
@BUILD_READLINE_MODULE_TRUE@libseed_readline_la_LIBADD = \
@BUILD_READLINE_MODULE_TRUE@ $(top_builddir)/libseed/libseed@SEED_GTK_VERSION@.la \
-@BUILD_READLINE_MODULE_TRUE@ -lreadline \
+@BUILD_READLINE_MODULE_TRUE@ -lreadline -ltermcap \
@BUILD_READLINE_MODULE_TRUE@ $(SEED_PROFILE_LIBS)
all: all-am

View File

@ -1,6 +0,0 @@
Seed is a library and interpreter, dynamically bridging (through
gobject-introspection) the WebKit JavaScriptCore engine with the GObject
type system. In a more concrete sense, Seed enables you to immediately
write applications around a significant portion of the GNOME platform,
and easily embed JavaScript as a scripting language in your GObject
library.

View File

@ -1,17 +0,0 @@
@comment $OpenBSD: PFRAG.shared,v 1.3 2011/05/27 21:03:03 jasper Exp $
@lib lib/libseed-gtk3.so.${LIBseed-gtk3_VERSION}
lib/seed-gtk3/libseed_DynamicObject.so
lib/seed-gtk3/libseed_cairo.so
lib/seed-gtk3/libseed_canvas.so
lib/seed-gtk3/libseed_dbusnative.so
lib/seed-gtk3/libseed_example.so
lib/seed-gtk3/libseed_ffi.so
lib/seed-gtk3/libseed_gettext.so
lib/seed-gtk3/libseed_gtkbuilder.so
lib/seed-gtk3/libseed_libxml.so
lib/seed-gtk3/libseed_mpfr.so
lib/seed-gtk3/libseed_multiprocessing.so
lib/seed-gtk3/libseed_os.so
lib/seed-gtk3/libseed_readline.so
lib/seed-gtk3/libseed_sandbox.so
lib/seed-gtk3/libseed_sqlite.so

View File

@ -1,133 +0,0 @@
@comment $OpenBSD: PLIST,v 1.6 2011/09/22 08:03:12 ajacoutot Exp $
%%SHARED%%
@bin bin/seed
include/seed-gtk3/
include/seed-gtk3/seed-debug.h
include/seed-gtk3/seed-module.h
include/seed-gtk3/seed.h
lib/libseed-gtk3.a
lib/libseed-gtk3.la
lib/pkgconfig/seed.pc
lib/seed-gtk3/
@comment lib/seed-gtk3/libseed_DynamicObject.a
@comment lib/seed-gtk3/libseed_DynamicObject.la
@comment lib/seed-gtk3/libseed_cairo.a
@comment lib/seed-gtk3/libseed_cairo.la
@comment lib/seed-gtk3/libseed_canvas.a
@comment lib/seed-gtk3/libseed_canvas.la
@comment lib/seed-gtk3/libseed_dbusnative.a
@comment lib/seed-gtk3/libseed_dbusnative.la
@comment lib/seed-gtk3/libseed_example.a
@comment lib/seed-gtk3/libseed_example.la
@comment lib/seed-gtk3/libseed_ffi.a
@comment lib/seed-gtk3/libseed_ffi.la
@comment lib/seed-gtk3/libseed_gettext.a
@comment lib/seed-gtk3/libseed_gettext.la
@comment lib/seed-gtk3/libseed_gtkbuilder.a
@comment lib/seed-gtk3/libseed_gtkbuilder.la
@comment lib/seed-gtk3/libseed_libxml.a
@comment lib/seed-gtk3/libseed_libxml.la
@comment lib/seed-gtk3/libseed_mpfr.a
@comment lib/seed-gtk3/libseed_mpfr.la
@comment lib/seed-gtk3/libseed_multiprocessing.a
@comment lib/seed-gtk3/libseed_multiprocessing.la
@comment lib/seed-gtk3/libseed_os.a
@comment lib/seed-gtk3/libseed_os.la
@comment lib/seed-gtk3/libseed_readline.a
@comment lib/seed-gtk3/libseed_readline.la
@comment lib/seed-gtk3/libseed_sandbox.a
@comment lib/seed-gtk3/libseed_sandbox.la
@comment lib/seed-gtk3/libseed_sqlite.a
@comment lib/seed-gtk3/libseed_sqlite.la
@man man/man1/seed.1
share/doc/seed/
share/doc/seed/AUTHORS
share/doc/seed/COPYING
share/doc/seed/ChangeLog
share/doc/seed/INSTALL
share/doc/seed/README
share/doc/seed/conventions.html
share/doc/seed/index.html
share/doc/seed/mapping/
share/doc/seed/mapping/enum-mapping.png
share/doc/seed/mapping/mapping.html
share/doc/seed/modules/
share/doc/seed/modules/canvas.html
share/doc/seed/modules/gtkbuilder/
share/doc/seed/modules/gtkbuilder/html/
share/doc/seed/modules/gtkbuilder/html/gtkbuilder-funcs.xml
share/doc/seed/modules/multiprocessing.html
share/doc/seed/modules/readline/
share/doc/seed/modules/readline/html/
share/doc/seed/modules/readline/html/readline-funcs.xml
share/doc/seed/modules/sandbox/
share/doc/seed/modules/sandbox/html/
share/doc/seed/modules/sandbox/html/sandbox-funcs.xml
share/doc/seed/modules/sqlite/
share/doc/seed/modules/sqlite/html/
share/doc/seed/modules/sqlite/html/sqlite-funcs.xml
share/doc/seed/runtime.html
share/doc/seed/sh.css
share/doc/seed/sh.js
share/doc/seed/sh_js.js
share/doc/seed/style.css
share/doc/seed/tutorial/
share/doc/seed/tutorial/1.js
share/doc/seed/tutorial/1.png
share/doc/seed/tutorial/2.js
share/doc/seed/tutorial/2.png
share/doc/seed/tutorial/3.js
share/doc/seed/tutorial/3.png
share/doc/seed/tutorial/4.png
share/doc/seed/tutorial/packing.png
share/doc/seed/tutorial/packing.svg
share/doc/seed/tutorial/tutorial.html
share/gtk-doc/
share/gtk-doc/html/
share/gtk-doc/html/seed/
share/gtk-doc/html/seed/GtkBuilder-module.html
share/gtk-doc/html/seed/Sandbox-module.html
share/gtk-doc/html/seed/api.html
share/gtk-doc/html/seed/home.png
share/gtk-doc/html/seed/index.html
share/gtk-doc/html/seed/index.sgml
share/gtk-doc/html/seed/ix01.html
share/gtk-doc/html/seed/js.html
share/gtk-doc/html/seed/left.png
share/gtk-doc/html/seed/modules.html
share/gtk-doc/html/seed/readline-module.html
share/gtk-doc/html/seed/right.png
share/gtk-doc/html/seed/seed-Contexts.html
share/gtk-doc/html/seed/seed-Evaluation.html
share/gtk-doc/html/seed/seed-Exceptions.html
share/gtk-doc/html/seed/seed-Initialization.html
share/gtk-doc/html/seed/seed-JS-Objects.html
share/gtk-doc/html/seed/seed-JavaScript-Classes.html
share/gtk-doc/html/seed/seed-Modules.html
share/gtk-doc/html/seed/seed-Native-Functions.html
share/gtk-doc/html/seed/seed-Native-Type-Conversion.html
share/gtk-doc/html/seed/seed-Operating-on-Native-Types.html
share/gtk-doc/html/seed/seed-SeedClosure.html
share/gtk-doc/html/seed/seed-Signals.html
share/gtk-doc/html/seed/seed-building.html
share/gtk-doc/html/seed/seed-contact.html
share/gtk-doc/html/seed/seed-importer.html
share/gtk-doc/html/seed/seed-introduction.html
share/gtk-doc/html/seed/seed.devhelp2
share/gtk-doc/html/seed/seed.html
share/gtk-doc/html/seed/sqlite-module.html
share/gtk-doc/html/seed/style.css
share/gtk-doc/html/seed/types.html
share/gtk-doc/html/seed/up.png
share/seed-gtk3/
share/seed-gtk3/dbus.js
share/seed-gtk3/extensions/
share/seed-gtk3/extensions/Clutter.js
share/seed-gtk3/extensions/GObject.js
share/seed-gtk3/extensions/Gio.js
share/seed-gtk3/extensions/Gst.js
share/seed-gtk3/extensions/Gtk.js
share/seed-gtk3/extensions/Seed.js
share/seed-gtk3/extensions/xml.js
share/seed-gtk3/lang.js
share/seed-gtk3/repl.js