diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-29 10:39:04 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-29 10:39:04 +0800 |
commit | 9c31431434572e742906987c05bddd07e7a57bda (patch) | |
tree | 77496a965e69cdbccd742fc30e8b9dbe6c8e3487 | |
parent | 7b19757ebbc9265812d9adf501c66a75df77ee6d (diff) | |
download | marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.tar marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.tar.gz marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.tar.bz2 marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.tar.lz marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.tar.xz marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.tar.zst marcuscom-ports-9c31431434572e742906987c05bddd07e7a57bda.zip |
- Update to 0.3.3
going to wait until ff 1.5 is out to put in ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5237 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | www/kazehakase/Makefile | 11 | ||||
-rw-r--r-- | www/kazehakase/distinfo | 6 | ||||
-rwxr-xr-x | www/kazehakase/files/mkinstalldirs | 111 |
3 files changed, 6 insertions, 122 deletions
diff --git a/www/kazehakase/Makefile b/www/kazehakase/Makefile index d2c748b1e..acb1fb3c5 100644 --- a/www/kazehakase/Makefile +++ b/www/kazehakase/Makefile @@ -3,15 +3,14 @@ # Whom: michael johnson <ahze@ahze.net> # # $FreeBSD$ -# $MCom$ +# $MCom: ports/www/kazehakase/Makefile,v 1.1 2005/11/26 05:50:51 ahze Exp $ # PORTNAME= kazehakase -PORTVERSION= 0.3.2 -PORTREVISION= 1 +PORTVERSION= 0.3.3 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} -MASTER_SITE_SUBDIR= ${PORTNAME}/17175 +MASTER_SITE_SUBDIR= ${PORTNAME}/17700 MAINTAINER= ahze@FreeBSD.org COMMENT= Kazehakase is a browser with gecko engine like Epiphany or Galeon @@ -88,8 +87,4 @@ post-patch: @${ECHO_MSG} "create_thumbnail=true" >> ${WRKSRC}/etc/kzrc .endif -post-configure: - @${CP} -f ${FILESDIR}/mkinstalldirs ${WRKSRC} - @${CHMOD} +x ${WRKSRC}/mkinstalldirs - .include <bsd.port.post.mk> diff --git a/www/kazehakase/distinfo b/www/kazehakase/distinfo index ea1f826b5..2a0e96672 100644 --- a/www/kazehakase/distinfo +++ b/www/kazehakase/distinfo @@ -1,3 +1,3 @@ -MD5 (kazehakase-0.3.2.tar.gz) = 0059c24a8c7edf3e0388eedbe7a8217d -SHA256 (kazehakase-0.3.2.tar.gz) = 56d92414179015a1a24e6f759b7b29777dd190a21ba5740d5d282dc8747b4728 -SIZE (kazehakase-0.3.2.tar.gz) = 1296729 +MD5 (kazehakase-0.3.3.tar.gz) = 48e398034c087e6f7a344fdd8e30dbd5 +SHA256 (kazehakase-0.3.3.tar.gz) = f3d240160b00591ce37d80c42ba3386f5ab4e40b45120ef69fe0cd316b0ed3ac +SIZE (kazehakase-0.3.3.tar.gz) = 1311717 diff --git a/www/kazehakase/files/mkinstalldirs b/www/kazehakase/files/mkinstalldirs deleted file mode 100755 index d2d5f21b6..000000000 --- a/www/kazehakase/files/mkinstalldirs +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# mkinstalldirs --- make directory hierarchy -# Author: Noah Friedman <friedman@prep.ai.mit.edu> -# Created: 1993-05-16 -# Public domain - -errstatus=0 -dirmode="" - -usage="\ -Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." - -# process command line arguments -while test $# -gt 0 ; do - case $1 in - -h | --help | --h*) # -h for help - echo "$usage" 1>&2 - exit 0 - ;; - -m) # -m PERM arg - shift - test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } - dirmode=$1 - shift - ;; - --) # stop option processing - shift - break - ;; - -*) # unknown option - echo "$usage" 1>&2 - exit 1 - ;; - *) # first non-opt arg - break - ;; - esac -done - -for file -do - if test -d "$file"; then - shift - else - break - fi -done - -case $# in - 0) exit 0 ;; -esac - -case $dirmode in - '') - if mkdir -p -- . 2>/dev/null; then - echo "mkdir -p -- $*" - exec mkdir -p -- "$@" - fi - ;; - *) - if mkdir -m "$dirmode" -p -- . 2>/dev/null; then - echo "mkdir -m $dirmode -p -- $*" - exec mkdir -m "$dirmode" -p -- "$@" - fi - ;; -esac - -for file -do - set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` - shift - - pathcomp= - for d - do - pathcomp="$pathcomp$d" - case $pathcomp in - -*) pathcomp=./$pathcomp ;; - esac - - if test ! -d "$pathcomp"; then - echo "mkdir $pathcomp" - - mkdir "$pathcomp" || lasterr=$? - - if test ! -d "$pathcomp"; then - errstatus=$lasterr - else - if test ! -z "$dirmode"; then - echo "chmod $dirmode $pathcomp" - lasterr="" - chmod "$dirmode" "$pathcomp" || lasterr=$? - - if test ! -z "$lasterr"; then - errstatus=$lasterr - fi - fi - fi - fi - - pathcomp="$pathcomp/" - done -done - -exit $errstatus - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# End: -# mkinstalldirs ends here |