aboutsummaryrefslogtreecommitdiff
path: root/misc/gretl
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-12-25 18:02:18 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-12-25 18:02:18 +0000
commit99e676b59ba35340357947829f2e34e64814cbc4 (patch)
treeb407c5bbd16481bd9289c163b7798957c0f091d4 /misc/gretl
parent3aa8035218ad67c41ea3e70248e4854349ccf91f (diff)
downloadports-99e676b59ba35340357947829f2e34e64814cbc4.tar.gz
ports-99e676b59ba35340357947829f2e34e64814cbc4.zip
- Update to version 1.2.0
PR: 60568 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=96584
Diffstat (limited to 'misc/gretl')
-rw-r--r--misc/gretl/Makefile11
-rw-r--r--misc/gretl/distinfo2
-rw-r--r--misc/gretl/files/patch-cli::Makefile.in20
-rw-r--r--misc/gretl/files/patch-gui2::Makefile.in46
-rw-r--r--misc/gretl/files/patch-gui2::ssheet.c17
-rw-r--r--misc/gretl/files/patch-lib::Makefile.in34
-rw-r--r--misc/gretl/files/patch-plugin::Makefile.in25
-rw-r--r--misc/gretl/pkg-plist476
8 files changed, 334 insertions, 297 deletions
diff --git a/misc/gretl/Makefile b/misc/gretl/Makefile
index 37305a2eaeec..2a1db304af05 100644
--- a/misc/gretl/Makefile
+++ b/misc/gretl/Makefile
@@ -7,7 +7,7 @@
#
PORTNAME= gretl
-PORTVERSION= 1.1.4
+PORTVERSION= 1.2.0
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@@ -23,13 +23,14 @@ RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
USE_BZIP2= yes
USE_X_PREFIX= yes
WANT_GNOME= yes
-USE_GNOME= gnomeprefix gnometarget gtksourceview libxml2
+USE_GNOME= gnometarget gtk20 libxml2
USE_REINPLACE= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --enable-static --enable-shared --with-gmake
+ALL_TARGET= # empty
INSTALLS_SHLIB= yes
MAN1= gretl.1 gretl-config.1
@@ -42,9 +43,11 @@ BROKEN= "math/lapack appears to be broken on alpha"
.if ${HAVE_GNOME:Mlibgnomeui}!=""
PKGNAMESUFFIX= -gnome
-USE_GNOME+= libgnomeprintui libgnomeui
+USE_GNOME+= gnomeprefix gtksourceview libgnomeui
+PLIST_SUB+= GRETLDATADIR="share/gnome/gretl"
.else
-CONFIGURE_ARGS+= --without-gnome
+CONFIGURE_ARGS+= --without-gnome --without-gtksourceview
+PLIST_SUB+= GRETLDATADIR="share/gretl"
.endif
post-patch:
diff --git a/misc/gretl/distinfo b/misc/gretl/distinfo
index c4a77aa6a361..7f3d3d1fd4c2 100644
--- a/misc/gretl/distinfo
+++ b/misc/gretl/distinfo
@@ -1 +1 @@
-MD5 (gretl-1.1.4.tar.bz2) = 3009db4052cb8c64e1587c66fe88ad70
+MD5 (gretl-1.2.0.tar.bz2) = bc8f320ca6f3bc2f08fee43d4aeae091
diff --git a/misc/gretl/files/patch-cli::Makefile.in b/misc/gretl/files/patch-cli::Makefile.in
index b873bef50c5d..c80706a4dde6 100644
--- a/misc/gretl/files/patch-cli::Makefile.in
+++ b/misc/gretl/files/patch-cli::Makefile.in
@@ -1,5 +1,5 @@
---- cli/Makefile.in.orig Sun Jun 29 04:06:18 2003
-+++ cli/Makefile.in Fri Jul 25 20:49:23 2003
+--- cli/Makefile.in.orig Wed Oct 22 06:22:31 2003
++++ cli/Makefile.in Sun Oct 26 10:19:56 2003
@@ -9,12 +9,16 @@
exec_prefix = @exec_prefix@
bindir = @bindir@
@@ -18,7 +18,7 @@
ifeq ($(CC),)
CC = gcc
endif
-@@ -39,7 +43,7 @@
+@@ -40,7 +44,7 @@
DEFS = -DLOCALEDIR=\"$(localedir)\" -DHAVE_CONFIG_H
@@ -27,12 +27,12 @@
CLI = gretlcli
LIBTOOL = ../libtool
-@@ -49,7 +53,7 @@
- $(CC) -MM -MG -I$(libsrc) $(DEFS) $< >$*.d 2>/dev/null
+@@ -50,7 +54,7 @@
+ $(CC) $(CFLAGS) -MM $< > .deps/$*.d
- $(CLI): $(OBJS)
-- ../libtool --mode=link $(CC) -o $@ $^ $(GRETLLIB) $(READLINE_LIBS)
-+ ../libtool --mode=link $(CC) -o $@ $^ $(GRETLLIB) $(READLINE_LIBS) $(INTL_LIBS) $(LDFLAGS)
-
- -include gretlcli.d
+ $(CLI): .deps $(OBJS)
+- $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJS) $(GRETLLIB) $(READLINE_LIBS)
++ $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJS) $(GRETLLIB) $(READLINE_LIBS) $(INTL_LIBS) $(LDFLAGS)
+ .deps:
+ mkdir $@
diff --git a/misc/gretl/files/patch-gui2::Makefile.in b/misc/gretl/files/patch-gui2::Makefile.in
index 11cf4b88909d..a7cb19b8c698 100644
--- a/misc/gretl/files/patch-gui2::Makefile.in
+++ b/misc/gretl/files/patch-gui2::Makefile.in
@@ -1,15 +1,33 @@
---- gui2/Makefile.in.orig Thu Sep 25 22:54:01 2003
-+++ gui2/Makefile.in Sun Oct 5 20:46:18 2003
+--- gui2/Makefile.in.orig Wed Nov 26 00:59:06 2003
++++ gui2/Makefile.in Thu Dec 25 13:25:07 2003
@@ -4,6 +4,7 @@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
-+datadir= @datadir@
++datadir = @datadir@
CC = @CC@
CFLAGS = @CFLAGS@
MAKE = @MAKE@
-@@ -47,19 +48,18 @@
- LIBS = $(GNOME_LIBS) $(GTKSOURCEVIEW_LIBS) $(GTK_EXTRA_LIB) ../lib/libgretl-1.0.la
+@@ -47,7 +48,7 @@
+
+ ifeq ($(have_gtksourceview),yes)
+ langbase := $(shell pkg-config --variable=prefix gtksourceview-1.0)
+- langdir = $(langbase)/share/gtksourceview-1.0/language-specs
++ langdir = $(datadir)/gtksourceview-1.0/language-specs
+ query_install_lang = install-lang
+ endif
+
+@@ -56,7 +57,7 @@
+ GTKSOURCEVIEW_CFLAGS = -I$(topsrc)/gui2
+ GTKSOURCEVIEW_LIBS = -L./gtksourceview -lgtksourceview-lite
+ MY_SOURCEVIEW_LIB = gtksourceview/libgtksourceview-lite.a
+- langdir = $(prefix)/share/gretl/gtksourceview
++ langdir = $(datadir)/gretl/gtksourceview
+ query_install_lang = install-lang
+ endif
+ endif
+@@ -66,14 +67,13 @@
+ ../lib/libgretl-1.0.la
GUI_CFLAGS = $(GNOME_CFLAGS) $(GTKSOURCEVIEW_CFLAGS) $(GTK_EXTRA_CFLAGS)
query_install_gnome = install-gnome
- GNOMEDEF = -DGNOME_DISABLE_DEPRECATED -DDATADIR=\"$(gnome_prefix)/share\"
@@ -24,14 +42,8 @@
+ localedir = $(prefix)/share/locale
NLSDEF = -DLOCALEDIR=\"$(localedir)\"
endif
- ifeq ($(have_gtksourceview),yes)
- langbase := $(shell pkg-config --variable=prefix gtksourceview-1.0)
-- langdir = $(langbase)/share/gtksourceview-1.0/language-specs
-+ langdir = $(datadir)/gtksourceview-1.0/language-specs
- query_install_lang = install-lang
- endif
-@@ -72,7 +72,7 @@
+@@ -87,7 +87,7 @@
# Directories
bindir = $(prefix)/bin
@@ -40,16 +52,20 @@
tooldir = $(topsrc)/tools
libsrc = $(topsrc)/lib/src
clisrc = $(topsrc)/cli
-@@ -110,7 +110,7 @@
+@@ -126,10 +126,10 @@
$(CC) $(CFLAGS) $(GTK_CFLAGS) -c $<
$(GTKEXTRA_LITE):
- make -C gtkextra-lite
+ $(MAKE) -C gtkextra-lite
- -include $(OBJS:.o=.d)
+ gtksourceview/libgtksourceview-lite.a:
+- make -C gtksourceview
++ $(MAKE) -C gtksourceview
-@@ -122,7 +122,7 @@
+ .deps:
+ mkdir $@
+@@ -144,7 +144,7 @@
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) -s $(PROG) $(bindir)/$(PROG)
install-data: installdirs
diff --git a/misc/gretl/files/patch-gui2::ssheet.c b/misc/gretl/files/patch-gui2::ssheet.c
new file mode 100644
index 000000000000..5e4fb8646f5d
--- /dev/null
+++ b/misc/gretl/files/patch-gui2::ssheet.c
@@ -0,0 +1,17 @@
+--- gui2/ssheet.c.orig Thu Nov 6 23:46:45 2003
++++ gui2/ssheet.c Thu Dec 25 17:33:04 2003
+@@ -822,13 +822,13 @@
+ {
+ GdkModifierType mods;
+ gint ret = FALSE;
++ GdkEventButton *bevent = (GdkEventButton *) event;
+
+ if (event->type != GDK_BUTTON_PRESS) {
+ return FALSE;
+ }
+
+ gdk_window_get_pointer(view->window, NULL, NULL, &mods);
+- GdkEventButton *bevent = (GdkEventButton *) event;
+
+ if (mods & GDK_BUTTON3_MASK) {
+ gtk_menu_popup (GTK_MENU(sheet->popup), NULL, NULL, NULL, NULL,
diff --git a/misc/gretl/files/patch-lib::Makefile.in b/misc/gretl/files/patch-lib::Makefile.in
index b373a98636f2..f524d5c0d343 100644
--- a/misc/gretl/files/patch-lib::Makefile.in
+++ b/misc/gretl/files/patch-lib::Makefile.in
@@ -1,5 +1,5 @@
---- lib/Makefile.in.orig Tue Sep 9 21:46:20 2003
-+++ lib/Makefile.in Wed Sep 10 14:28:33 2003
+--- lib/Makefile.in.orig Thu Dec 11 23:27:53 2003
++++ lib/Makefile.in Thu Dec 25 13:19:07 2003
@@ -18,6 +18,11 @@
have_gtk = @have_gtk@
@@ -21,30 +21,32 @@
INSTALLDIRS = $(libdir) $(includedir) $(aclocaldir)
-@@ -48,7 +53,7 @@
+@@ -48,8 +53,8 @@
# hard-coded -L/usr/local/lib is a bodge!!
--LIBS = $(LAPACK_LIBS) -lm -ldl -L/usr/local/lib -lz $(XML_LIBS) $(GLIB_LIBS) $(GMP_LIBS)
-+LIBS = $(LAPACK_LIBS) -lm -lz $(XML_LIBS) $(GLIB_LIBS) $(GMP_LIBS) $(INTL_LIBS)
+-LIBS = $(LAPACK_LIBS) -lm -ldl -L/usr/local/lib -lz $(XML_LIBS) \
+- $(GLIB_LIBS) $(GMP_LIBS)
++LIBS = $(LAPACK_LIBS) -lm -lz $(XML_LIBS) \
++ $(GLIB_LIBS) $(GMP_LIBS) $(INTL_LIBS)
#### End of system configuration section. ####
-@@ -76,7 +81,7 @@
-
+@@ -78,7 +83,7 @@
LIBTOOL = ../libtool
--override CFLAGS += -I.. -I$(topsrc) -I$(libsrc) $(XML_CFLAGS) $(GLIB_CFLAGS) $(GMP_CFLAGS) -DHAVE_CONFIG_H
-+override CFLAGS += -I.. -I$(topsrc) -I$(libsrc) $(XML_CFLAGS) $(GLIB_CFLAGS) $(GMP_CFLAGS) -DHAVE_CONFIG_H $(CPPFLAGS)
+ override CFLAGS += -I.. -I$(topsrc) -I$(libsrc) $(XML_CFLAGS) $(GLIB_CFLAGS) \
+- $(GMP_CFLAGS) -DHAVE_CONFIG_H
++ $(GMP_CFLAGS) -DHAVE_CONFIG_H $(CPPFLAGS)
- COMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS)
+ COMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS)
-@@ -86,7 +91,7 @@
+@@ -88,7 +93,7 @@
- $(LIBGRETL): $(LOBJS) $(AUX_LOBJ)
+ $(LIBGRETL): .deps $(LOBJS) $(AUX_LOBJ)
$(LIBTOOL) --mode=link $(CC) -o $@ $(LOBJS) $(AUX_LOBJ) \
-- -rpath $(prefix)/lib $(LIBS) -version-info 0:11:0
-+ -rpath $(prefix)/lib $(LIBS) -version-info 0:11:0 $(LDFLAGS)
-
- -include $(LOBJS:.lo=.d)
+- -rpath $(prefix)/lib $(LIBS) -version-info 0:14:0
++ -rpath $(prefix)/lib $(LIBS) -version-info 0:14:0 $(LDFLAGS)
+ .deps:
+ mkdir $@
diff --git a/misc/gretl/files/patch-plugin::Makefile.in b/misc/gretl/files/patch-plugin::Makefile.in
index 633472cd3d4e..61055a2418ed 100644
--- a/misc/gretl/files/patch-plugin::Makefile.in
+++ b/misc/gretl/files/patch-plugin::Makefile.in
@@ -1,17 +1,17 @@
---- plugin/Makefile.in.orig Tue Apr 22 00:29:01 2003
-+++ plugin/Makefile.in Sun May 4 03:14:38 2003
-@@ -7,6 +7,10 @@
- MAKE = @MAKE@
+--- plugin/Makefile.in.orig Sun Oct 19 23:15:51 2003
++++ plugin/Makefile.in Sun Oct 26 10:24:36 2003
+@@ -8,6 +8,10 @@
INSTALL = @INSTALL@
LN = @LN_S@
-+
+
+CPPFLAGS = @CPPFLAGS@
+LDFLAGS = @LDFLAGS@
+INTL_LIBS = @LTLIBINTL@
-
++
have_gtk = @have_gtk@
have_gmp = @have_gmp@
-@@ -38,8 +42,8 @@
+
+@@ -35,8 +39,8 @@
override CFLAGS += -I.. -DHAVE_CONFIG_H
LIBTOOL = ../libtool
@@ -22,16 +22,7 @@
GRETLINC = -I$(topsrc)/lib/src
GRETLLIB = ../lib/libgretl-1.0.la
-@@ -48,7 +52,7 @@
- GTK_CFLAGS += -DGTK_DISABLE_DEPRECATED
- GRETL_LIBOLE2_CFLAGS := -I$(topsrc)/plugin $(shell pkg-config --cflags glib-2.0)
- else
-- GRETL_LIBOLE2_CFLAGS := -I$(topsrc)/plugin $(shell glib-config --cflags)
-+ GRETL_LIBOLE2_CFLAGS := -I$(topsrc)/plugin $(shell $(GLIB_CONFIG) --cflags)
- endif
-
- SRCS = excel_import.c gnumeric_import.c gretl_matrix.c import_common.c \
-@@ -129,11 +133,11 @@
+@@ -136,11 +140,11 @@
.PHONY:
install: $(GRETLLIB) $(PLUGINS) installdirs
diff --git a/misc/gretl/pkg-plist b/misc/gretl/pkg-plist
index f299fe50e276..d417ce9fe305 100644
--- a/misc/gretl/pkg-plist
+++ b/misc/gretl/pkg-plist
@@ -14,11 +14,12 @@ include/gretl/discrete.h
include/gretl/estimate.h
include/gretl/f2c.h
include/gretl/generate.h
+include/gretl/genstack.h
include/gretl/graphing.h
-include/gretl/gretl_cmdlist.h
include/gretl/gretl_commands.h
include/gretl/gretl_errors.h
include/gretl/gretl_matrix.h
+include/gretl/gretl_matrix_private.h
include/gretl/gretl_utils.h
include/gretl/gretl_win32.h
include/gretl/interact.h
@@ -29,6 +30,7 @@ include/gretl/modelprint.h
include/gretl/monte_carlo.h
include/gretl/nls.h
include/gretl/nonparam.h
+include/gretl/plugins.h
include/gretl/printout.h
include/gretl/pvalues.h
include/gretl/qr_estimate.h
@@ -39,238 +41,242 @@ include/gretl/system.h
include/gretl/texprint.h
include/gretl/var.h
include/gretl/version.h
-lib/gretl/excel_import.so
-lib/gretl/gnumeric_import.so
-lib/gretl/johansen.so
-lib/gretl/lad.so
-lib/gretl/leverage.so
-lib/gretl/mp_ols.so
-lib/gretl/panel_data.so
-lib/gretl/pca.so
-lib/gretl/progress_bar.so
-lib/gretl/range-mean.so
-lib/gretl/stats_tables.so
-lib/gretl/sur.so
-lib/gretl/tramo-x12a.so
+lib/gretl-gtk2/excel_import.so
+lib/gretl-gtk2/gnumeric_import.so
+lib/gretl-gtk2/johansen.so
+lib/gretl-gtk2/lad.so
+lib/gretl-gtk2/leverage.so
+lib/gretl-gtk2/mp_ols.so
+lib/gretl-gtk2/panel_data.so
+lib/gretl-gtk2/pca.so
+lib/gretl-gtk2/progress_bar.so
+lib/gretl-gtk2/range-mean.so
+lib/gretl-gtk2/stats_tables.so
+lib/gretl-gtk2/sur.so
+lib/gretl-gtk2/tramo-x12a.so
lib/libgretl-1.0.a
lib/libgretl-1.0.so
lib/libgretl-1.0.so.0
libdata/pkgconfig/gretl.pc
%%GNOME:%%share/gnome/applications/gretl.desktop
-share/gnome/gtksourceview-1.0/language-specs/gnuplot.lang
-share/gnome/gtksourceview-1.0/language-specs/gretl.lang
-share/gnome/gretl/COPYING
-share/gnome/gretl/data/data10-1.gdt
-share/gnome/gretl/data/data10-2.gdt
-share/gnome/gretl/data/data10-3.gdt
-share/gnome/gretl/data/data10-4.gdt
-share/gnome/gretl/data/data10-5.gdt
-share/gnome/gretl/data/data10-6.gdt
-share/gnome/gretl/data/data10-7.gdt
-share/gnome/gretl/data/data10-8.gdt
-share/gnome/gretl/data/data11-1.gdt
-share/gnome/gretl/data/data12-1.gdt
-share/gnome/gretl/data/data13-1.gdt
-share/gnome/gretl/data/data2-1.gdt
-share/gnome/gretl/data/data2-2.gdt
-share/gnome/gretl/data/data2-3.gdt
-share/gnome/gretl/data/data3-1.gdt
-share/gnome/gretl/data/data3-10.gdt
-share/gnome/gretl/data/data3-11.gdt
-share/gnome/gretl/data/data3-12.gdt
-share/gnome/gretl/data/data3-13.gdt
-share/gnome/gretl/data/data3-14.gdt
-share/gnome/gretl/data/data3-15.gdt
-share/gnome/gretl/data/data3-2.gdt
-share/gnome/gretl/data/data3-3.gdt
-share/gnome/gretl/data/data3-4.gdt
-share/gnome/gretl/data/data3-5.gdt
-share/gnome/gretl/data/data3-6.gdt
-share/gnome/gretl/data/data3-7.gdt
-share/gnome/gretl/data/data3-8.gdt
-share/gnome/gretl/data/data3-9.gdt
-share/gnome/gretl/data/data4-1.gdt
-share/gnome/gretl/data/data4-10.gdt
-share/gnome/gretl/data/data4-11.gdt
-share/gnome/gretl/data/data4-12.gdt
-share/gnome/gretl/data/data4-13.gdt
-share/gnome/gretl/data/data4-14.gdt
-share/gnome/gretl/data/data4-15.gdt
-share/gnome/gretl/data/data4-16.gdt
-share/gnome/gretl/data/data4-17.gdt
-share/gnome/gretl/data/data4-2.gdt
-share/gnome/gretl/data/data4-3.gdt
-share/gnome/gretl/data/data4-3a.gdt
-share/gnome/gretl/data/data4-4.gdt
-share/gnome/gretl/data/data4-5.gdt
-share/gnome/gretl/data/data4-6.gdt
-share/gnome/gretl/data/data4-7.gdt
-share/gnome/gretl/data/data4-8.gdt
-share/gnome/gretl/data/data4-9.gdt
-share/gnome/gretl/data/data6-1.gdt
-share/gnome/gretl/data/data6-2.gdt
-share/gnome/gretl/data/data6-3.gdt
-share/gnome/gretl/data/data6-4.gdt
-share/gnome/gretl/data/data6-5.gdt
-share/gnome/gretl/data/data6-6.gdt
-share/gnome/gretl/data/data7-1.gdt
-share/gnome/gretl/data/data7-10.gdt
-share/gnome/gretl/data/data7-11.gdt
-share/gnome/gretl/data/data7-12.gdt
-share/gnome/gretl/data/data7-13.gdt
-share/gnome/gretl/data/data7-14.gdt
-share/gnome/gretl/data/data7-15.gdt
-share/gnome/gretl/data/data7-16.gdt
-share/gnome/gretl/data/data7-17.gdt
-share/gnome/gretl/data/data7-18.gdt
-share/gnome/gretl/data/data7-19.gdt
-share/gnome/gretl/data/data7-2.gdt
-share/gnome/gretl/data/data7-20.gdt
-share/gnome/gretl/data/data7-21.gdt
-share/gnome/gretl/data/data7-22.gdt
-share/gnome/gretl/data/data7-23.gdt
-share/gnome/gretl/data/data7-24.gdt
-share/gnome/gretl/data/data7-26.gdt
-share/gnome/gretl/data/data7-3.gdt
-share/gnome/gretl/data/data7-4.gdt
-share/gnome/gretl/data/data7-5.gdt
-share/gnome/gretl/data/data7-6.gdt
-share/gnome/gretl/data/data7-7.gdt
-share/gnome/gretl/data/data7-8.gdt
-share/gnome/gretl/data/data7-9.gdt
-share/gnome/gretl/data/data8-1.gdt
-share/gnome/gretl/data/data8-2.gdt
-share/gnome/gretl/data/data8-3.gdt
-share/gnome/gretl/data/data9-1.gdt
-share/gnome/gretl/data/data9-10.gdt
-share/gnome/gretl/data/data9-11.gdt
-share/gnome/gretl/data/data9-12.gdt
-share/gnome/gretl/data/data9-13.gdt
-share/gnome/gretl/data/data9-2.gdt
-share/gnome/gretl/data/data9-3.gdt
-share/gnome/gretl/data/data9-4.gdt
-share/gnome/gretl/data/data9-5.gdt
-share/gnome/gretl/data/data9-6.gdt
-share/gnome/gretl/data/data9-7.gdt
-share/gnome/gretl/data/data9-8.gdt
-share/gnome/gretl/data/data9-9.gdt
-share/gnome/gretl/data/descriptions
-share/gnome/gretl/data/ects_nls.gdt
-share/gnome/gretl/data/greene/greene10_3.gdt
-share/gnome/gretl/data/greene/greene11_3.gdt
-share/gnome/gretl/data/greene/greene12_1.gdt
-share/gnome/gretl/data/greene/greene13_1.gdt
-share/gnome/gretl/data/greene/greene14_1.gdt
-share/gnome/gretl/data/greene/greene18_1.gdt
-share/gnome/gretl/data/greene/greene18_2.gdt
-share/gnome/gretl/data/greene/greene19_1.gdt
-share/gnome/gretl/data/greene/greene5_1.gdt
-share/gnome/gretl/data/greene/greene7_8.gdt
-share/gnome/gretl/data/greene/greene8_3.gdt
-share/gnome/gretl/data/greene/greene9_1.gdt
-share/gnome/gretl/data/greene/wg_descriptions
-share/gnome/gretl/data/gretldata.dtd
-share/gnome/gretl/data/hamilton.gdt
-share/gnome/gretl/data/leverage.gdt
-share/gnome/gretl/data/longley.gdt
-share/gnome/gretl/data/sw_ch12.gdt
-share/gnome/gretl/db/bcih.bin
-share/gnome/gretl/db/bcih.idx
-share/gnome/gretl/gretl-logo.xpm
-share/gnome/gretl/gretl.hlp
-share/gnome/gretl/gretl.stamp
-share/gnome/gretl/gretlcli.hlp
-share/gnome/gretl/scripts/ects_nls.inp
-share/gnome/gretl/scripts/greene11_3.inp
-share/gnome/gretl/scripts/greene12_1.inp
-share/gnome/gretl/scripts/greene14_1.inp
-share/gnome/gretl/scripts/greene14_2.inp
-share/gnome/gretl/scripts/greene18_6.inp
-share/gnome/gretl/scripts/greene19_1.inp
-share/gnome/gretl/scripts/greene7_8.inp
-share/gnome/gretl/scripts/greene8_3.inp
-share/gnome/gretl/scripts/greene9_1.inp
-share/gnome/gretl/scripts/greene9_3.inp
-share/gnome/gretl/scripts/leverage.inp
-share/gnome/gretl/scripts/longley.inp
-share/gnome/gretl/scripts/ps10-1.inp
-share/gnome/gretl/scripts/ps10-10.inp
-share/gnome/gretl/scripts/ps10-11.inp
-share/gnome/gretl/scripts/ps10-2.inp
-share/gnome/gretl/scripts/ps10-3.inp
-share/gnome/gretl/scripts/ps10-4.inp
-share/gnome/gretl/scripts/ps10-5a.inp
-share/gnome/gretl/scripts/ps10-5b.inp
-share/gnome/gretl/scripts/ps10-6.inp
-share/gnome/gretl/scripts/ps10-7.inp
-share/gnome/gretl/scripts/ps10-8.inp
-share/gnome/gretl/scripts/ps10-9.inp
-share/gnome/gretl/scripts/ps11-1.inp
-share/gnome/gretl/scripts/ps11-2.inp
-share/gnome/gretl/scripts/ps11-3.inp
-share/gnome/gretl/scripts/ps12-1.inp
-share/gnome/gretl/scripts/ps13-1.inp
-share/gnome/gretl/scripts/ps2-1.inp
-share/gnome/gretl/scripts/ps2-2.inp
-share/gnome/gretl/scripts/ps2-3.inp
-share/gnome/gretl/scripts/ps3-1.inp
-share/gnome/gretl/scripts/ps3-2.inp
-share/gnome/gretl/scripts/ps3-3.inp
-share/gnome/gretl/scripts/ps3-4.inp
-share/gnome/gretl/scripts/ps3-5.inp
-share/gnome/gretl/scripts/ps3-6.inp
-share/gnome/gretl/scripts/ps4-1.inp
-share/gnome/gretl/scripts/ps4-2.inp
-share/gnome/gretl/scripts/ps4-3.inp
-share/gnome/gretl/scripts/ps4-4.inp
-share/gnome/gretl/scripts/ps4-5.inp
-share/gnome/gretl/scripts/ps5-1.inp
-share/gnome/gretl/scripts/ps5-2.inp
-share/gnome/gretl/scripts/ps5-3.inp
-share/gnome/gretl/scripts/ps5-4.inp
-share/gnome/gretl/scripts/ps5-5.inp
-share/gnome/gretl/scripts/ps6-1.inp
-share/gnome/gretl/scripts/ps6-10.inp
-share/gnome/gretl/scripts/ps6-11.inp
-share/gnome/gretl/scripts/ps6-12.inp
-share/gnome/gretl/scripts/ps6-2.inp
-share/gnome/gretl/scripts/ps6-3.inp
-share/gnome/gretl/scripts/ps6-4.inp
-share/gnome/gretl/scripts/ps6-5.inp
-share/gnome/gretl/scripts/ps6-6.inp
-share/gnome/gretl/scripts/ps6-7.inp
-share/gnome/gretl/scripts/ps6-8.inp
-share/gnome/gretl/scripts/ps6-9.inp
-share/gnome/gretl/scripts/ps7-1.inp
-share/gnome/gretl/scripts/ps7-2.inp
-share/gnome/gretl/scripts/ps7-3.inp
-share/gnome/gretl/scripts/ps7-4.inp
-share/gnome/gretl/scripts/ps7-5.inp
-share/gnome/gretl/scripts/ps7-6.inp
-share/gnome/gretl/scripts/ps7-7.inp
-share/gnome/gretl/scripts/ps8-1.inp
-share/gnome/gretl/scripts/ps8-2.inp
-share/gnome/gretl/scripts/ps8-3.inp
-share/gnome/gretl/scripts/ps8-4.inp
-share/gnome/gretl/scripts/ps8-5.inp
-share/gnome/gretl/scripts/ps8-6.inp
-share/gnome/gretl/scripts/ps8-7.inp
-share/gnome/gretl/scripts/ps8-8.inp
-share/gnome/gretl/scripts/ps9-1.inp
-share/gnome/gretl/scripts/ps9-10.inp
-share/gnome/gretl/scripts/ps9-2.inp
-share/gnome/gretl/scripts/ps9-3.inp
-share/gnome/gretl/scripts/ps9-4.inp
-share/gnome/gretl/scripts/ps9-5.inp
-share/gnome/gretl/scripts/ps9-6.inp
-share/gnome/gretl/scripts/ps9-7.inp
-share/gnome/gretl/scripts/ps9-8.inp
-share/gnome/gretl/scripts/ps9-9.inp
-share/gnome/gretl/scripts/ps_descriptions
-share/gnome/gretl/scripts/pscoin.inp
-share/gnome/gretl/scripts/sw_ch12.inp
-share/gnome/gretl/scripts/testinp
-share/gnome/gretl/scripts/wg_ps_descriptions
+%%GRETLDATADIR%%/COPYING
+%%GRETLDATADIR%%/data/arma.gdt
+%%GRETLDATADIR%%/data/data10-1.gdt
+%%GRETLDATADIR%%/data/data10-2.gdt
+%%GRETLDATADIR%%/data/data10-3.gdt
+%%GRETLDATADIR%%/data/data10-4.gdt
+%%GRETLDATADIR%%/data/data10-5.gdt
+%%GRETLDATADIR%%/data/data10-6.gdt
+%%GRETLDATADIR%%/data/data10-7.gdt
+%%GRETLDATADIR%%/data/data10-8.gdt
+%%GRETLDATADIR%%/data/data11-1.gdt
+%%GRETLDATADIR%%/data/data12-1.gdt
+%%GRETLDATADIR%%/data/data13-1.gdt
+%%GRETLDATADIR%%/data/data2-1.gdt
+%%GRETLDATADIR%%/data/data2-2.gdt
+%%GRETLDATADIR%%/data/data2-3.gdt
+%%GRETLDATADIR%%/data/data3-1.gdt
+%%GRETLDATADIR%%/data/data3-10.gdt
+%%GRETLDATADIR%%/data/data3-11.gdt
+%%GRETLDATADIR%%/data/data3-12.gdt
+%%GRETLDATADIR%%/data/data3-13.gdt
+%%GRETLDATADIR%%/data/data3-14.gdt
+%%GRETLDATADIR%%/data/data3-15.gdt
+%%GRETLDATADIR%%/data/data3-2.gdt
+%%GRETLDATADIR%%/data/data3-3.gdt
+%%GRETLDATADIR%%/data/data3-4.gdt
+%%GRETLDATADIR%%/data/data3-5.gdt
+%%GRETLDATADIR%%/data/data3-6.gdt
+%%GRETLDATADIR%%/data/data3-7.gdt
+%%GRETLDATADIR%%/data/data3-8.gdt
+%%GRETLDATADIR%%/data/data3-9.gdt
+%%GRETLDATADIR%%/data/data4-1.gdt
+%%GRETLDATADIR%%/data/data4-10.gdt
+%%GRETLDATADIR%%/data/data4-11.gdt
+%%GRETLDATADIR%%/data/data4-12.gdt
+%%GRETLDATADIR%%/data/data4-13.gdt
+%%GRETLDATADIR%%/data/data4-14.gdt
+%%GRETLDATADIR%%/data/data4-15.gdt
+%%GRETLDATADIR%%/data/data4-16.gdt
+%%GRETLDATADIR%%/data/data4-17.gdt
+%%GRETLDATADIR%%/data/data4-2.gdt
+%%GRETLDATADIR%%/data/data4-3.gdt
+%%GRETLDATADIR%%/data/data4-3a.gdt
+%%GRETLDATADIR%%/data/data4-4.gdt
+%%GRETLDATADIR%%/data/data4-5.gdt
+%%GRETLDATADIR%%/data/data4-6.gdt
+%%GRETLDATADIR%%/data/data4-7.gdt
+%%GRETLDATADIR%%/data/data4-8.gdt
+%%GRETLDATADIR%%/data/data4-9.gdt
+%%GRETLDATADIR%%/data/data6-1.gdt
+%%GRETLDATADIR%%/data/data6-2.gdt
+%%GRETLDATADIR%%/data/data6-3.gdt
+%%GRETLDATADIR%%/data/data6-4.gdt
+%%GRETLDATADIR%%/data/data6-5.gdt
+%%GRETLDATADIR%%/data/data6-6.gdt
+%%GRETLDATADIR%%/data/data7-1.gdt
+%%GRETLDATADIR%%/data/data7-10.gdt
+%%GRETLDATADIR%%/data/data7-11.gdt
+%%GRETLDATADIR%%/data/data7-12.gdt
+%%GRETLDATADIR%%/data/data7-13.gdt
+%%GRETLDATADIR%%/data/data7-14.gdt
+%%GRETLDATADIR%%/data/data7-15.gdt
+%%GRETLDATADIR%%/data/data7-16.gdt
+%%GRETLDATADIR%%/data/data7-17.gdt
+%%GRETLDATADIR%%/data/data7-18.gdt
+%%GRETLDATADIR%%/data/data7-19.gdt
+%%GRETLDATADIR%%/data/data7-2.gdt
+%%GRETLDATADIR%%/data/data7-20.gdt
+%%GRETLDATADIR%%/data/data7-21.gdt
+%%GRETLDATADIR%%/data/data7-22.gdt
+%%GRETLDATADIR%%/data/data7-23.gdt
+%%GRETLDATADIR%%/data/data7-24.gdt
+%%GRETLDATADIR%%/data/data7-26.gdt
+%%GRETLDATADIR%%/data/data7-3.gdt
+%%GRETLDATADIR%%/data/data7-4.gdt
+%%GRETLDATADIR%%/data/data7-5.gdt
+%%GRETLDATADIR%%/data/data7-6.gdt
+%%GRETLDATADIR%%/data/data7-7.gdt
+%%GRETLDATADIR%%/data/data7-8.gdt
+%%GRETLDATADIR%%/data/data7-9.gdt
+%%GRETLDATADIR%%/data/data8-1.gdt
+%%GRETLDATADIR%%/data/data8-2.gdt
+%%GRETLDATADIR%%/data/data8-3.gdt
+%%GRETLDATADIR%%/data/data9-1.gdt
+%%GRETLDATADIR%%/data/data9-10.gdt
+%%GRETLDATADIR%%/data/data9-11.gdt
+%%GRETLDATADIR%%/data/data9-12.gdt
+%%GRETLDATADIR%%/data/data9-13.gdt
+%%GRETLDATADIR%%/data/data9-2.gdt
+%%GRETLDATADIR%%/data/data9-3.gdt
+%%GRETLDATADIR%%/data/data9-4.gdt
+%%GRETLDATADIR%%/data/data9-5.gdt
+%%GRETLDATADIR%%/data/data9-6.gdt
+%%GRETLDATADIR%%/data/data9-7.gdt
+%%GRETLDATADIR%%/data/data9-8.gdt
+%%GRETLDATADIR%%/data/data9-9.gdt
+%%GRETLDATADIR%%/data/descriptions
+%%GRETLDATADIR%%/data/ects_nls.gdt
+%%GRETLDATADIR%%/data/greene/greene10_3.gdt
+%%GRETLDATADIR%%/data/greene/greene11_3.gdt
+%%GRETLDATADIR%%/data/greene/greene12_1.gdt
+%%GRETLDATADIR%%/data/greene/greene13_1.gdt
+%%GRETLDATADIR%%/data/greene/greene14_1.gdt
+%%GRETLDATADIR%%/data/greene/greene18_1.gdt
+%%GRETLDATADIR%%/data/greene/greene18_2.gdt
+%%GRETLDATADIR%%/data/greene/greene19_1.gdt
+%%GRETLDATADIR%%/data/greene/greene5_1.gdt
+%%GRETLDATADIR%%/data/greene/greene7_8.gdt
+%%GRETLDATADIR%%/data/greene/greene8_3.gdt
+%%GRETLDATADIR%%/data/greene/greene9_1.gdt
+%%GRETLDATADIR%%/data/greene/wg_descriptions
+%%GRETLDATADIR%%/data/gretldata.dtd
+%%GRETLDATADIR%%/data/hamilton.gdt
+%%GRETLDATADIR%%/data/leverage.gdt
+%%GRETLDATADIR%%/data/longley.gdt
+%%GRETLDATADIR%%/data/sw_ch12.gdt
+%%GRETLDATADIR%%/data/sw_ch14.gdt
+%%GRETLDATADIR%%/db/bcih.bin
+%%GRETLDATADIR%%/db/bcih.idx
+%%GRETLDATADIR%%/gretl-logo.xpm
+%%GRETLDATADIR%%/gretl.hlp
+%%GRETLDATADIR%%/gretl.stamp
+%%GRETLDATADIR%%/gretlcli.hlp
+%%GRETLDATADIR%%/scripts/arma.inp
+%%GRETLDATADIR%%/scripts/ects_nls.inp
+%%GRETLDATADIR%%/scripts/greene11_3.inp
+%%GRETLDATADIR%%/scripts/greene12_1.inp
+%%GRETLDATADIR%%/scripts/greene14_1.inp
+%%GRETLDATADIR%%/scripts/greene14_2.inp
+%%GRETLDATADIR%%/scripts/greene18_6.inp
+%%GRETLDATADIR%%/scripts/greene19_1.inp
+%%GRETLDATADIR%%/scripts/greene7_8.inp
+%%GRETLDATADIR%%/scripts/greene8_3.inp
+%%GRETLDATADIR%%/scripts/greene9_1.inp
+%%GRETLDATADIR%%/scripts/greene9_3.inp
+%%GRETLDATADIR%%/scripts/leverage.inp
+%%GRETLDATADIR%%/scripts/longley.inp
+%%GRETLDATADIR%%/scripts/ps10-1.inp
+%%GRETLDATADIR%%/scripts/ps10-10.inp
+%%GRETLDATADIR%%/scripts/ps10-11.inp
+%%GRETLDATADIR%%/scripts/ps10-2.inp
+%%GRETLDATADIR%%/scripts/ps10-3.inp
+%%GRETLDATADIR%%/scripts/ps10-4.inp
+%%GRETLDATADIR%%/scripts/ps10-5a.inp
+%%GRETLDATADIR%%/scripts/ps10-5b.inp
+%%GRETLDATADIR%%/scripts/ps10-6.inp
+%%GRETLDATADIR%%/scripts/ps10-7.inp
+%%GRETLDATADIR%%/scripts/ps10-8.inp
+%%GRETLDATADIR%%/scripts/ps10-9.inp
+%%GRETLDATADIR%%/scripts/ps11-1.inp
+%%GRETLDATADIR%%/scripts/ps11-2.inp
+%%GRETLDATADIR%%/scripts/ps11-3.inp
+%%GRETLDATADIR%%/scripts/ps12-1.inp
+%%GRETLDATADIR%%/scripts/ps13-1.inp
+%%GRETLDATADIR%%/scripts/ps2-1.inp
+%%GRETLDATADIR%%/scripts/ps2-2.inp
+%%GRETLDATADIR%%/scripts/ps2-3.inp
+%%GRETLDATADIR%%/scripts/ps3-1.inp
+%%GRETLDATADIR%%/scripts/ps3-2.inp
+%%GRETLDATADIR%%/scripts/ps3-3.inp
+%%GRETLDATADIR%%/scripts/ps3-4.inp
+%%GRETLDATADIR%%/scripts/ps3-5.inp
+%%GRETLDATADIR%%/scripts/ps3-6.inp
+%%GRETLDATADIR%%/scripts/ps4-1.inp
+%%GRETLDATADIR%%/scripts/ps4-2.inp
+%%GRETLDATADIR%%/scripts/ps4-3.inp
+%%GRETLDATADIR%%/scripts/ps4-4.inp
+%%GRETLDATADIR%%/scripts/ps4-5.inp
+%%GRETLDATADIR%%/scripts/ps5-1.inp
+%%GRETLDATADIR%%/scripts/ps5-2.inp
+%%GRETLDATADIR%%/scripts/ps5-3.inp
+%%GRETLDATADIR%%/scripts/ps5-4.inp
+%%GRETLDATADIR%%/scripts/ps5-5.inp
+%%GRETLDATADIR%%/scripts/ps6-1.inp
+%%GRETLDATADIR%%/scripts/ps6-10.inp
+%%GRETLDATADIR%%/scripts/ps6-11.inp
+%%GRETLDATADIR%%/scripts/ps6-12.inp
+%%GRETLDATADIR%%/scripts/ps6-2.inp
+%%GRETLDATADIR%%/scripts/ps6-3.inp
+%%GRETLDATADIR%%/scripts/ps6-4.inp
+%%GRETLDATADIR%%/scripts/ps6-5.inp
+%%GRETLDATADIR%%/scripts/ps6-6.inp
+%%GRETLDATADIR%%/scripts/ps6-7.inp
+%%GRETLDATADIR%%/scripts/ps6-8.inp
+%%GRETLDATADIR%%/scripts/ps6-9.inp
+%%GRETLDATADIR%%/scripts/ps7-1.inp
+%%GRETLDATADIR%%/scripts/ps7-2.inp
+%%GRETLDATADIR%%/scripts/ps7-3.inp
+%%GRETLDATADIR%%/scripts/ps7-4.inp
+%%GRETLDATADIR%%/scripts/ps7-5.inp
+%%GRETLDATADIR%%/scripts/ps7-6.inp
+%%GRETLDATADIR%%/scripts/ps7-7.inp
+%%GRETLDATADIR%%/scripts/ps8-1.inp
+%%GRETLDATADIR%%/scripts/ps8-2.inp
+%%GRETLDATADIR%%/scripts/ps8-3.inp
+%%GRETLDATADIR%%/scripts/ps8-4.inp
+%%GRETLDATADIR%%/scripts/ps8-5.inp
+%%GRETLDATADIR%%/scripts/ps8-6.inp
+%%GRETLDATADIR%%/scripts/ps8-7.inp
+%%GRETLDATADIR%%/scripts/ps8-8.inp
+%%GRETLDATADIR%%/scripts/ps9-1.inp
+%%GRETLDATADIR%%/scripts/ps9-10.inp
+%%GRETLDATADIR%%/scripts/ps9-2.inp
+%%GRETLDATADIR%%/scripts/ps9-3.inp
+%%GRETLDATADIR%%/scripts/ps9-4.inp
+%%GRETLDATADIR%%/scripts/ps9-5.inp
+%%GRETLDATADIR%%/scripts/ps9-6.inp
+%%GRETLDATADIR%%/scripts/ps9-7.inp
+%%GRETLDATADIR%%/scripts/ps9-8.inp
+%%GRETLDATADIR%%/scripts/ps9-9.inp
+%%GRETLDATADIR%%/scripts/ps_descriptions
+%%GRETLDATADIR%%/scripts/pscoin.inp
+%%GRETLDATADIR%%/scripts/sw_ch12.inp
+%%GRETLDATADIR%%/scripts/sw_ch14.inp
+%%GRETLDATADIR%%/scripts/testinp
+%%GRETLDATADIR%%/scripts/wg_ps_descriptions
+%%GNOME:%%share/gnome/gtksourceview-1.0/language-specs/gnuplot.lang
+%%GNOME:%%share/gnome/gtksourceview-1.0/language-specs/gretl.lang
%%GNOME:%%share/gnome/help/gretl/C/chapters/appendices.xml
%%GNOME:%%share/gnome/help/gretl/C/chapters/biblio.xml
%%GNOME:%%share/gnome/help/gretl/C/chapters/cli.xml
@@ -315,7 +321,9 @@ share/gnome/gretl/scripts/wg_ps_descriptions
%%GNOME:%%share/gnome/help/gretl/C/gretl.xml
%%GNOME:%%share/gnome/mime-info/gretl.keys
%%GNOME:%%share/gnome/mime-info/gretl.mime
+%%GNOME:%%@exec scrollkeeper-install -q %D/share/gnome/omf/gretl/gretl-C.omf 2>/dev/null || true
%%GNOME:%%share/gnome/omf/gretl/gretl-C.omf
+%%GNOME:%%@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gretl/gretl-C.omf 2>/dev/null || true
%%GNOME:%%share/gnome/pixmaps/gnome-application-x-gretldata.png
%%GNOME:%%share/gnome/pixmaps/gnome-application-x-gretlsession.png
%%GNOME:%%share/gnome/pixmaps/gretl-logo.xpm
@@ -328,12 +336,12 @@ share/locale/ja/LC_MESSAGES/gretl.mo
%%GNOME:%%@dirrm share/gnome/help/gretl/C/chapters
%%GNOME:%%@dirrm share/gnome/help/gretl/C
%%GNOME:%%@dirrm share/gnome/help/gretl
-@dirrm share/gnome/gretl/scripts
-@dirrm share/gnome/gretl/db
-@dirrm share/gnome/gretl/data/greene
-@dirrm share/gnome/gretl/data
-@dirrm share/gnome/gretl
-@dirrm lib/gretl
+@dirrm %%GRETLDATADIR%%/scripts
+@dirrm %%GRETLDATADIR%%/db
+@dirrm %%GRETLDATADIR%%/data/greene
+@dirrm %%GRETLDATADIR%%/data
+@dirrm %%GRETLDATADIR%%
+@dirrm lib/gretl-gtk2
@dirrm include/gretl
%%GNOME:%%@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gretl
%%GNOME:%%@dirrm etc/gconf/gconf.xml.defaults/apps/gretl