diff options
author | ryoon <ryoon@pkgsrc.org> | 2014-01-03 05:01:36 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2014-01-03 05:01:36 +0000 |
commit | 27b4478d073fb189ead960842aa9a435cce6ace4 (patch) | |
tree | 12baa30f6c5ac228cbc8d365a361ba23aed92002 /lang/librep/patches | |
parent | 72761466e5817b8ca84bd7f92e4aff5d26ff49b4 (diff) | |
download | pkgsrc-27b4478d073fb189ead960842aa9a435cce6ace4.tar.gz |
Update to 0.92.3
Changelog:
0.92.3
======
* More entities support for xml-reader (gt, umlauts, esszett)
* Fix address of FSF in all files [Togan Muftouglu]
* Assume stack-direciton `downwards' for all ppc and s390 variants
[Kimb B. Heino]
* Updated `install-sh' to version 2011-01-19.21.
* Added `program-exists-p' [Mark Triggs]
0.92.2.1
========
* Assume stack-direction `downwards' on ARM [Kim B. Heino]
0.92.2
======
* Sync librep.spec with Fedora [Kim B. Heino]
* Assume stack-direction `downwards' for x86_64. Self-detection
doesn't work with gcc >= 4.7.0 [Kim B. Heino]
* read_line no longer aborts at 400 characters [Timo Korvola]
0.92.1b
=======
* Fixed a bug in librep.pc
0.92.1
======
* Fixed building REP on OS-X 10.6 by not exporting librepm.sym via
libtool[John Harper]
* Fixed building REP on OS-X 10.7 by defining a proper ALIGN if
ffi.h doesn't provide one [John Harper]
* Fixed detection of FFI, if ffi.h isn't found [John Harper]
* Added various missing symbols in librep.sym [John Harper]
* Fixed a warning from configure regarding librep.pc [Christopher
Bratusek]
* Removed VPATH from Makefiles, to allow building REP using `makepp'
[Daniel Pfeiffer]
* Added `positon' meta-function [Jeremy Hankins] [Eli Barzilay]
* Imported utility-functions from Sawfish: `beautify-symbol',
`remove-newlines', `option-index' and `string->symbol'.
0.92.0
======
* Bumped soname to 16.0.0 [Ian Zimmermann]
* Make librep loading shared-objects, rather than libtool-archives
[Kim B. Heino]
* Removed architecture and version from installation paths
[Christopher Bratusek]
* Improved debian packaging-scripts [Ian Zimmermann, Christopher
Bratusek]
0.91.1
======
* `rep.ffi.util' module [Sergey Bolshakov]
A new module containing utils for rep's ffi binding is added.
* Fixed librep.pc to prevent a possible build issue in rep-gtk or
sawfish (occured on fedora 14) [Christopher Bratusek]
* New functions [Teika Kazura]
`function-name' returns the name of the function object. (*note
Functions::)
`remove-hook-by-name' removes functions from a hook by their name.
(*note Normal Hooks::)
* Documentation [Teika kazura]
Function `in-hook-p' now has the documentation. (*note Normal
Hooks::)
New sections "Module Aliases" (*note Module Aliases::), "Module
Limits" (*note Module Limits::).
* Minor bugfix: `remove-hook' used to emit an error if the hook was
unbound, but it's fixed. [Teika kazura]
* fixed the spec-file [Kim B. Heino]
* updated debian packaging-scripts (mostly) to the new format
[Christopher Bratusek]
Diffstat (limited to 'lang/librep/patches')
-rw-r--r-- | lang/librep/patches/patch-aa | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lang/librep/patches/patch-aa b/lang/librep/patches/patch-aa index f4b802ef359..51a6e1c1581 100644 --- a/lang/librep/patches/patch-aa +++ b/lang/librep/patches/patch-aa @@ -1,25 +1,27 @@ -$NetBSD: patch-aa,v 1.12 2010/11/22 20:10:35 shattered Exp $ +$NetBSD: patch-aa,v 1.13 2014/01/03 05:01:36 ryoon Exp $ ---- man/Makefile.in.orig 2010-01-08 18:30:43.000000000 +0000 +* Fix man page destination + +--- man/Makefile.in.orig 2013-01-06 18:16:53.000000000 +0000 +++ man/Makefile.in -@@ -51,17 +51,17 @@ install : librep.info installdirs +@@ -50,17 +50,17 @@ install : librep.info installdirs -install-info --info-dir=$(DESTDIR)$(infodir) librep.info for f in rep*.1; do \ gzip $$f -c > $$f.gz; \ - $(INSTALL_DATA) $$f.gz $(DESTDIR)$(prefix)/share/man/man1/; \ -+ $(INSTALL_DATA) $$f.gz $(DESTDIR)$(prefix)/man/man1/; \ ++ $(INSTALL_DATA) $$f.gz $(DESTDIR)$(prefix)/${PKGMANDIR}/man1/; \ done - installdirs : mkinstalldirs + installdirs : $(top_srcdir)/mkinstalldirs $(SHELL) $< $(DESTDIR)$(infodir) - $(SHELL) $< $(DESTDIR)$(prefix)/share/man/man1/ -+ $(SHELL) $< $(DESTDIR)$(prefix)/man/man1/ ++ $(SHELL) $< $(DESTDIR)$(prefix)/${PKGMANDIR}/man1/ uninstall : rm -f $(DESTDIR)$(infodir)/librep.info* -install-info --remove --info-dir=$(DESTDIR)$(infodir) librep.info - rm -f $(DESTDIR)$(prefix)/share/man/man1/rep* -+ rm -f $(DESTDIR)$(prefix)/man/man1/rep* ++ rm -f $(DESTDIR)$(prefix)/${PKGMANDIR}/man1/rep* clean : rm -f *~ librep.info* librep.?? librep.??? rep*.1.gz |