Date: Sat, 28 Aug 2004 16:24:08 -0400 (EDT) From: Michael Johnson <ahze@ahze.net> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/71088: [MAINTAINER] www/kazehakase: update to 0.1.9 Message-ID: <200408282024.i7SKO8xB036125@gentoo.ahze.net> Resent-Message-ID: <200408282030.i7SKUMEM025176@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 71088 >Category: ports >Synopsis: [MAINTAINER] www/kazehakase: update to 0.1.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Aug 28 20:30:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.3-BETA1 i386 >Organization: >Environment: System: FreeBSD gentoo.ahze.net 5.3-BETA1 FreeBSD 5.3-BETA1 #64: Thu Aug 26 13:59:58 EDT 2004 >Description: - Update to 0.1.9 Changes * Thumbnail support * Recent closed tabs * Toggle proxy use action * Options for history search * Undo/Redo * Fixed crash in attempting to search in the detailed preference Added file(s): - pkg-message Removed file(s): - files/patch-configure Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- kazehakase-0.1.9.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/kazehakase.orig/Makefile /usr/ports/www/kazehakase/Makefile --- /usr/ports/www/kazehakase.orig/Makefile Sat Aug 28 11:36:56 2004 +++ /usr/ports/www/kazehakase/Makefile Sat Aug 28 16:14:41 2004 @@ -6,10 +6,10 @@ # PORTNAME= kazehakase -PORTVERSION= 0.1.8.1 +PORTVERSION= 0.1.9 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} -MASTER_SITE_SUBDIR= ${PORTNAME}/10618/ +MASTER_SITE_SUBDIR= ${PORTNAME}/11115/ MAINTAINER= ahze@ahze.net COMMENT= Kazehakase is a browser with gecko engine like Epiphany or Galeon @@ -38,17 +38,33 @@ USE_GNOME= gnomehack intlhack gnomeprefix gtk20 USE_GMAKE= yes USE_REINPLACE= yes + +.if defined(WITH_MIGEMO) +USE_RUBY= yes +.endif + CONFIGURE_ARGS= --with-mozilla-includes="${X11BASE}/include/mozilla${HEADERS_SUFX}" \ --with-mozilla-libs="${X11BASE}/lib/${MOZILLA}" \ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -OPTIONS= MIGEMO "Enable Migemo (Japanese incremental search)" Off +OPTIONS= MIGEMO "Enable Migemo (Japanese incremental search)" Off \ + IMAGEMAGICK "Enable Thumbnail support (EXPERIMENTAL!)" Off FLASHPLAYER= ${LOCALBASE}/lib/libflashplayer.so.1 .include <bsd.port.pre.mk> +.if exists(${LOCALBASE}/bin/migemo) +.if exists(${RUBY_SITEARCHLIBDIR}/uconv.so) +WITH_MIGEMO= yes +.endif +.endif + +.if exists(${LOCALBASE}/bin/convert) +WITH_IMAGEMAGICK=yes +.endif + .if defined(WITH_MIGEMO) .if ${ARCH} == "i386" || ${ARCH} == "sparc64" RUN_DEPENDS+= migemo:${PORTSDIR}/japanese/migemo \ @@ -58,6 +74,10 @@ .endif .endif +.if defined(WITH_IMAGEMAGICK) +RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick +.endif + post-patch: @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|mozilla-gtkmozembed${HEADERS_SUFX}|g' \ ${WRKSRC}/configure @@ -69,5 +89,10 @@ s|%%PREFIX%%|${PREFIX}|; s|%%X11BASE%%|${X11BASE}|; \ s|%%LOCALBASE%%|${LOCALBASE}|; s|%%MOZILLA%%|${MOZILLA}|' \ ${WRKSRC}/src/kazehakase + +post-install: +.if defined(WITH_IMAGEMAGICK) + @${CAT} ${PKGMESSAGE} +.endif .include <bsd.port.post.mk> diff -ruN --exclude=CVS /usr/ports/www/kazehakase.orig/distinfo /usr/ports/www/kazehakase/distinfo --- /usr/ports/www/kazehakase.orig/distinfo Sat Aug 28 11:36:56 2004 +++ /usr/ports/www/kazehakase/distinfo Sat Aug 28 11:23:06 2004 @@ -1,2 +1,2 @@ -MD5 (kazehakase-0.1.8.1.tar.gz) = 1a4f67f125657e4f630e8418ca69f4cf -SIZE (kazehakase-0.1.8.1.tar.gz) = 1007770 +MD5 (kazehakase-0.1.9.tar.gz) = 72a733327f0cdef740996b6f9efdfeba +SIZE (kazehakase-0.1.9.tar.gz) = 1045767 diff -ruN --exclude=CVS /usr/ports/www/kazehakase.orig/files/patch-configure /usr/ports/www/kazehakase/files/patch-configure --- /usr/ports/www/kazehakase.orig/files/patch-configure Fri Aug 27 17:02:44 2004 +++ /usr/ports/www/kazehakase/files/patch-configure Wed Dec 31 19:00:00 1969 @@ -1,13 +0,0 @@ ---- configure.orig Fri Aug 27 12:36:22 2004 -+++ configure Fri Aug 27 12:37:21 2004 -@@ -19324,7 +19324,10 @@ - 1.7rc3) MOZILLA_SNAPSHOT=15 ;; - 1.7) MOZILLA_SNAPSHOT=15 ;; - 1.7.1) MOZILLA_SNAPSHOT=15 ;; -+ 1.7.2) MOZILLA_SNAPSHOT=15 ;; - 1.8a) MOZILLA_SNAPSHOT=16 ;; -+ 1.8a2) MOZILLA_SNAPSHOT=16 ;; -+ 1.8a3) MOZILLA_SNAPSHOT=16 ;; - trunk) MOZILLA_SNAPSHOT=16 ;; - *) { { echo "$as_me:$LINENO: error: - ***************************************************************************** diff -ruN --exclude=CVS /usr/ports/www/kazehakase.orig/pkg-message /usr/ports/www/kazehakase/pkg-message --- /usr/ports/www/kazehakase.orig/pkg-message Wed Dec 31 19:00:00 1969 +++ /usr/ports/www/kazehakase/pkg-message Sat Aug 28 14:51:43 2004 @@ -0,0 +1,4 @@ +===> +===> Thumbnail support is in the experimental state, so it does not work by +===> default. If you wish to use thumbnails, you have to write +===> "create_thumbnail=true" in [Global] section in ~/.kazehakase/kzrc diff -ruN --exclude=CVS /usr/ports/www/kazehakase.orig/pkg-plist /usr/ports/www/kazehakase/pkg-plist --- /usr/ports/www/kazehakase.orig/pkg-plist Sat Aug 28 11:36:56 2004 +++ /usr/ports/www/kazehakase/pkg-plist Sat Aug 28 15:01:57 2004 @@ -1,6 +1,5 @@ bin/kazehakase bin/kz -bin/kzmigemo etc/kazehakase/bookmarkbar.xml etc/kazehakase/bookmarks.xml etc/kazehakase/kz-ui-beginner.xml @@ -12,6 +11,7 @@ etc/kazehakase/smartbookmarks.xml share/gnome/applications/kazehakase.desktop share/gnome/kazehakase/icons/kz-anchor.png +share/gnome/kazehakase/icons/kz-book-search.png share/gnome/kazehakase/icons/kz-bookmark.png share/gnome/kazehakase/icons/kz-closebackward.png share/gnome/kazehakase/icons/kz-closeforward.png @@ -20,6 +20,7 @@ share/gnome/kazehakase/icons/kz-copyurl.png share/gnome/kazehakase/icons/kz-editor.png share/gnome/kazehakase/icons/kz-folder-open.png +share/gnome/kazehakase/icons/kz-folder-search.png share/gnome/kazehakase/icons/kz-folder.png share/gnome/kazehakase/icons/kz-google.png share/gnome/kazehakase/icons/kz-gray.png @@ -36,10 +37,14 @@ share/gnome/kazehakase/icons/kz-savelink.png share/gnome/kazehakase/icons/kz-scrap-bookmark.png share/gnome/kazehakase/icons/kz-search.png +share/gnome/kazehakase/icons/kz-select-all.png share/gnome/kazehakase/icons/kz-separator.png share/gnome/kazehakase/icons/kz-smart-bookmark.png share/gnome/kazehakase/icons/kz-tab-next.png share/gnome/kazehakase/icons/kz-tab-prev.png +share/gnome/kazehakase/icons/kz-view-source.png +share/gnome/kazehakase/kz-no-thumbnail.png +share/gnome/kazehakase/search-result.css share/gnome/pixmaps/kazehakase-icon.png share/locale/ja/LC_MESSAGES/kazehakase.mo @dirrm share/gnome/kazehakase/icons --- kazehakase-0.1.9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200408282024.i7SKO8xB036125>