diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2005-02-14 13:33:31 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2005-02-14 13:33:31 +0000 |
commit | 0a39310a4e2c360e9dc4a9b0cc4f1db9990eb180 (patch) | |
tree | 2dea9079cec29eed090a3dbe891900855fa1e957 /deskutils/fusenshi | |
parent | d10694746b7c5459c411abf5184b1bfe888f3ef9 (diff) | |
download | ports-0a39310a4e2c360e9dc4a9b0cc4f1db9990eb180.tar.gz ports-0a39310a4e2c360e9dc4a9b0cc4f1db9990eb180.zip |
Notes
Diffstat (limited to 'deskutils/fusenshi')
-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/ |