diff options
author | wiz <wiz> | 2003-07-31 19:02:09 +0000 |
---|---|---|
committer | wiz <wiz> | 2003-07-31 19:02:09 +0000 |
commit | e0816ceffbf9ef96a656cd2261a4edd78e3a5757 (patch) | |
tree | 392a736d39c637545edc3713b40a1a17f9375073 /www | |
parent | 9c1dfb033928dbc25cf055833f30476755fd3c37 (diff) | |
download | pkgsrc-e0816ceffbf9ef96a656cd2261a4edd78e3a5757.tar.gz |
Update to 0.11.
New in 0.11:
In 0.10, the config file format for the custom menu changed, but
the conversion was broken. Replace entries in the custom menu were
broken, causing a segfault in some cases. These are both fixed.
New in 0.10:
Changes include many bugfixes and speedups, many user interface
improvements, more translations, and a very nice function reference
interface. Currently included function reference files are for PHP
and HTML.
Diffstat (limited to 'www')
-rw-r--r-- | www/bluefish/Makefile | 5 | ||||
-rw-r--r-- | www/bluefish/PLIST | 10 | ||||
-rw-r--r-- | www/bluefish/distinfo | 7 | ||||
-rw-r--r-- | www/bluefish/patches/patch-aa | 22 |
4 files changed, 37 insertions, 7 deletions
diff --git a/www/bluefish/Makefile b/www/bluefish/Makefile index f7455fcf172..194900f119b 100644 --- a/www/bluefish/Makefile +++ b/www/bluefish/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2003/07/13 13:53:46 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2003/07/31 19:02:09 wiz Exp $ # -DISTNAME= bluefish-0.9 -PKGREVISION= 2 +DISTNAME= bluefish-0.11 CATEGORIES= www MASTER_SITES= http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/ \ http://student.wau.nl/~olivier/bluefish/download/ \ diff --git a/www/bluefish/PLIST b/www/bluefish/PLIST index c8c57985474..ff47314be56 100644 --- a/www/bluefish/PLIST +++ b/www/bluefish/PLIST @@ -1,8 +1,11 @@ -@comment $NetBSD: PLIST,v 1.6 2003/02/20 17:34:49 salo Exp $ +@comment $NetBSD: PLIST,v 1.7 2003/07/31 19:02:09 wiz Exp $ bin/bluefish share/bluefish/bluefish_splash.png +share/bluefish/custom_menu.default share/bluefish/encodings.default share/bluefish/filetypes.default +share/bluefish/funcref_html.xml +share/bluefish/funcref_php.xml share/bluefish/highlighting.default share/bluefish/icon_c.png share/bluefish/icon_cfml.png @@ -10,14 +13,19 @@ share/bluefish/icon_dir.png share/bluefish/icon_html.png share/bluefish/icon_image.png share/bluefish/icon_java.png +share/bluefish/icon_pascal.png share/bluefish/icon_php.png +share/bluefish/icon_python.png +share/bluefish/icon_r.png share/bluefish/icon_unknown.png share/bluefish/icon_xml.png ${PKGLOCALEDIR}/locale/da/LC_MESSAGES/bluefish.mo +${PKGLOCALEDIR}/locale/de/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/es/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/it/LC_MESSAGES/bluefish.mo +${PKGLOCALEDIR}/locale/ja/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/no/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/bluefish.mo ${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/bluefish.mo diff --git a/www/bluefish/distinfo b/www/bluefish/distinfo index c6ea88dbf59..d2cb5e3ef60 100644 --- a/www/bluefish/distinfo +++ b/www/bluefish/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.5 2003/02/20 17:34:49 salo Exp $ +$NetBSD: distinfo,v 1.6 2003/07/31 19:02:09 wiz Exp $ -SHA1 (bluefish-0.9.tar.bz2) = 8366662c1a9cd3dbf1351c09487539a5f77ee99c -Size (bluefish-0.9.tar.bz2) = 627606 bytes +SHA1 (bluefish-0.11.tar.bz2) = af85434222745f0a356c9b19dc9ec30d55c52a07 +Size (bluefish-0.11.tar.bz2) = 751511 bytes +SHA1 (patch-aa) = 32f83e2b905f70a43c0e32f8de848e6efc09aeb0 diff --git a/www/bluefish/patches/patch-aa b/www/bluefish/patches/patch-aa new file mode 100644 index 00000000000..413673ebec1 --- /dev/null +++ b/www/bluefish/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.8 2003/07/31 19:02:09 wiz Exp $ + +--- Makefile.in.orig 2003-07-31 20:43:38.000000000 +0200 ++++ Makefile.in +@@ -45,7 +45,7 @@ INSTALL_DATA = $(INSTALL) -m 644 + bluefish:all + all: + @cd src/ && $(MAKE) all +- if [ "${USE_NLS}" == "yes" ]; then \ ++ if [ "${USE_NLS}" = "yes" ]; then \ + cd po/ && $(MAKE) all; \ + fi + @cd data/ && $(MAKE) all +@@ -77,7 +77,7 @@ install: src/bluefish + $(INSTALL_DATA) inline_images/bluefish_icon1.png $(iconpath)/bluefish-icon.png ;\ + fi + @cd src/ && $(MAKE) install +- if [ "${USE_NLS}" == "yes" ]; then \ ++ if [ "${USE_NLS}" = "yes" ]; then \ + cd po/ && $(MAKE) install;\ + fi + @cd data/ && $(MAKE) install |