diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-02-14 21:10:14 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-02-14 21:10:14 +0000 |
commit | 8c46547804ec8eca0e947c35e78f479584aa59cb (patch) | |
tree | 97d65c80480d294fb3b0ddf111f3f1c3a7c37155 /editors/gedit/patches | |
parent | 4b68d2d910d7e694ff70dc37e510aacde781ba89 (diff) | |
download | pkgsrc-8c46547804ec8eca0e947c35e78f479584aa59cb.tar.gz |
Update to 2.2.0.1. Changes include:
- Fixed an egg-recent related bug (James Willcox)
- Make sure to include <config.h> in all *.c files (Paolo Maggi)
- Allow svg icons in tabs and recent files list (James Willcox)
- Code cleanup in the Open page of the preferences dialog (Paolo)
- Updated gedit guide (Breda McColgan)
- Updated to latest recent-files code (James Willcox)
- Updated about box (Paolo Mggi)
- Fixed mem leaks (Paolo)
- Fixed several bugs in the diff plugin (Paolo)
- Fixed default fonts for printing (Paolo Maggi)
- Updating docs to newest build template (John Fleck)
- Updated gedit man file (James Willcox, Paolo)
- Requires libgnomeprintui-2.2 >= 2.1.7 (Paolo)
- Revamped about dialog (Christian Neumair)
- Added ISO-8859-2 to the list of supported
encodings (Marcin Malinowski)
- Fixed problems with line numbers (Paolo)
- Improved key navigability of output window (Paolo)
- Remember printer configuration/settings (Paolo)
- Fixed various little problems in the plugin
engine (Paolo)
- Enabled startup notification (James)
- Fixed icon sizes for recent-files menus and
document tabs (James).
- Fixed a crash bug related to recent files (James)
- Lots of new and updated translations.
Changes in the package:
- Depend on gnome2-dirs.
- Use the new schemas.mk framework to handle GConf2 schemas.
Diffstat (limited to 'editors/gedit/patches')
-rw-r--r-- | editors/gedit/patches/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/editors/gedit/patches/patch-aa b/editors/gedit/patches/patch-aa new file mode 100644 index 00000000000..d2877497d6f --- /dev/null +++ b/editors/gedit/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 2003/02/14 21:10:14 jmmv Exp $ + +--- data/Makefile.in.orig 2003-02-14 17:59:17.000000000 +0100 ++++ data/Makefile.in +@@ -140,7 +140,7 @@ keysdir = $(datadir)/mime-info + keys_in_files = gedit.keys.in + keys_DATA = $(keys_in_files:.keys.in=.keys) + +-schemasdir = $(sysconfdir)/gconf/schemas ++schemasdir = $(datadir)/gconf/schemas + schemas_in_files = gedit.schemas.in + schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) + +@@ -412,7 +412,7 @@ maintainer-clean-generic clean mostlycle + @INTLTOOL_SERVER_RULE@ + + install-data-local: +- if test -z "$(DESTDIR)" ; then \ ++ if false; then \ + for p in $(schemas_DATA) ; do \ + GCONF_CONFIG_SOURCE=$(GCONF_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$$p ; \ + done \ |