diff options
author | daichi <daichi@FreeBSD.org> | 2005-02-14 21:33:31 +0800 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2005-02-14 21:33:31 +0800 |
commit | 4af1eb174f7f479314f808de18f547f139fca446 (patch) | |
tree | f12749710fe7681703fe533b5d534c9e9a59bccc | |
parent | 7828bbc6fa8c55a51bca93194fa463f68f1b0518 (diff) | |
download | freebsd-ports-gnome-4af1eb174f7f479314f808de18f547f139fca446.tar.gz freebsd-ports-gnome-4af1eb174f7f479314f808de18f547f139fca446.tar.zst freebsd-ports-gnome-4af1eb174f7f479314f808de18f547f139fca446.zip |
update to 0.7.2
Submitted by: ozawa@ongs.co.jp
-rw-r--r-- | deskutils/fusenshi/Makefile | 3 | ||||
-rw-r--r-- | deskutils/fusenshi/distinfo | 4 | ||||
-rw-r--r-- | deskutils/fusenshi/files/patch-aa | 50 |
3 files changed, 3 insertions, 54 deletions
diff --git a/deskutils/fusenshi/Makefile b/deskutils/fusenshi/Makefile index 1ed86f65d02d..45569f5b6c8b 100644 --- a/deskutils/fusenshi/Makefile +++ b/deskutils/fusenshi/Makefile @@ -6,8 +6,7 @@ # PORTNAME= fusenshi -PORTVERSION= 0.7.1 -PORTREVISION= 1 +PORTVERSION= 0.7.2 CATEGORIES= deskutils MASTER_SITES= http://www.ongs.co.jp/projects/fusenshi/ DISTNAME= ${PORTNAME}-${PORTVERSION} diff --git a/deskutils/fusenshi/distinfo b/deskutils/fusenshi/distinfo index 02bd33a196b7..0335b551cd9e 100644 --- a/deskutils/fusenshi/distinfo +++ b/deskutils/fusenshi/distinfo @@ -1,2 +1,2 @@ -MD5 (fusenshi-0.7.1.tgz) = eac47dfa8915c91df6cd9a10bd66a8da -SIZE (fusenshi-0.7.1.tgz) = 60565 +MD5 (fusenshi-0.7.2.tgz) = 3bba859b4e5ffa8566b57954bd0e675d +SIZE (fusenshi-0.7.2.tgz) = 64641 diff --git a/deskutils/fusenshi/files/patch-aa b/deskutils/fusenshi/files/patch-aa deleted file mode 100644 index b386237e54c1..000000000000 --- a/deskutils/fusenshi/files/patch-aa +++ /dev/null @@ -1,50 +0,0 @@ ---- src/Makefile.orig Tue Dec 28 21:23:40 2004 -+++ src/Makefile Fri Jan 28 23:34:43 2005 -@@ -1,9 +1,9 @@ --# $Id: Makefile,v 1.4 2004/12/28 12:23:40 ozawa Exp $ -+# $Id: Makefile,v 1.5 2005/01/28 14:38:52 ozawa Exp $ - # - # Copyright 2003- ONGS Inc. All rights reserved. - # - # author: Masanori OZAWA (ozawa@ongs.co.jp) --# version: $Revision: 1.4 $ -+# version: $Revision: 1.5 $ - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions -@@ -35,8 +35,8 @@ - - LIB_DEPS= gtkmm-2.4 gthread-2.0 libxml-2.0 - --CPP = g++ --CPPOPT = -Wall -pipe -+CXX ?= g++ -+CXXOPT = -Wall -pipe - CFLAGS = `pkg-config --cflags ${LIB_DEPS}` \ - -I/usr/local/include -I. -I./include - LIBS = `pkg-config --libs ${LIB_DEPS}` -lintl -@@ -46,9 +46,9 @@ - OBJ = ${SRC:.cpp=.o} - - .ifndef DEBUG --CPPOPT += -O2 -+CXXOPT += -O2 - .else --CPPOPT += -g -+CXXOPT += -g - .endif - - .ifndef WITHOUT_NLS -@@ -71,10 +71,10 @@ - all: build - - build: ${OBJ} -- ${CPP} ${CPPOPT} ${LIBS} -o ${TARGET} ${OBJ} -+ ${CXX} ${CXXOPT} ${LIBS} -o ${TARGET} ${OBJ} - - .cpp.o: -- ${CPP} ${CPPOPT} ${CFLAGS} -o ${<:.cpp=.o} -c $< -+ ${CXX} ${CXXOPT} ${CFLAGS} -o ${<:.cpp=.o} -c $< - - install: - install -c -m 755 ${TARGET} ${PREFIX}/bin/ |