Update to 0.4.1
- Patches have been merged upstream Project by: BSD# http://www.mono-project.com/Mono:FreeBSD
This commit is contained in:
parent
ca0e5b8e20
commit
337c742d6d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=174823
@ -3,12 +3,12 @@
|
||||
# Whom: Mezz <mezz@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
# $Id: Makefile,v 1.15 2006/04/15 01:22:20 tmclau02 Exp $
|
||||
# $Id: Makefile,v 1.18 2006/10/03 01:02:38 tmclau02 Exp $
|
||||
#
|
||||
|
||||
PORTNAME= bless
|
||||
PORTVERSION= 0.4.0
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 0.4.1
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= http://download.gna.org/bless/
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (bless-0.4.0.tar.gz) = e161996a67155303d9e6a04fa28662ca
|
||||
SHA256 (bless-0.4.0.tar.gz) = 35b79f37288f77fe89d60abc06eef4713c52f1422a4903caec5c287624eb22d4
|
||||
SIZE (bless-0.4.0.tar.gz) = 534055
|
||||
MD5 (bless-0.4.1.tar.gz) = a3551ebecda11b115e98608894f5c0ec
|
||||
SHA256 (bless-0.4.1.tar.gz) = 8f265db2d1888b0b8a275287d07946c411f5ae2729b6cd4c72e84e50e6149801
|
||||
SIZE (bless-0.4.1.tar.gz) = 523222
|
||||
|
@ -1,13 +0,0 @@
|
||||
--- src/ByteBuffer/SaveAsOperation.cs.orig Sun Sep 11 12:22:16 2005
|
||||
+++ src/ByteBuffer/SaveAsOperation.cs Sat Feb 18 15:31:08 2006
|
||||
@@ -63,8 +63,8 @@
|
||||
{
|
||||
#if ENABLE_UNIX_SPECIFIC
|
||||
// get info about the device the file will be saved on
|
||||
- Mono.Unix.Statvfs stat=new Mono.Unix.Statvfs();
|
||||
- Mono.Unix.Syscall.statvfs(Path.GetDirectoryName(fn), out stat);
|
||||
+ Mono.Unix.Native.Statvfs stat=new Mono.Unix.Native.Statvfs();
|
||||
+ Mono.Unix.Native.Syscall.statvfs(Path.GetDirectoryName(fn), out stat);
|
||||
|
||||
long freeSpace=(long)(stat.f_bavail*stat.f_bsize);
|
||||
|
@ -1,13 +0,0 @@
|
||||
--- src/ByteBuffer/SaveOperation.cs.orig Wed May 11 16:10:19 2005
|
||||
+++ src/ByteBuffer/SaveOperation.cs Sat Feb 18 15:41:21 2006
|
||||
@@ -53,8 +53,8 @@
|
||||
// get info about the device the file will be saved on
|
||||
FileInfo fi=new FileInfo(bb.Filename);
|
||||
|
||||
- Mono.Unix.Statvfs stat=new Mono.Unix.Statvfs();
|
||||
- Mono.Unix.Syscall.statvfs(bb.Filename, out stat);
|
||||
+ Mono.Unix.Native.Statvfs stat=new Mono.Unix.Native.Statvfs();
|
||||
+ Mono.Unix.Native.Syscall.statvfs(bb.Filename, out stat);
|
||||
|
||||
long freeSpace=(long)(stat.f_bavail*stat.f_bsize) + fi.Length;
|
||||
|
@ -1,12 +0,0 @@
|
||||
--- src/gui/dialogs/SaveConfirmationMultiAlert.cs.orig Mon Feb 7 06:46:46 2005
|
||||
+++ src/gui/dialogs/SaveConfirmationMultiAlert.cs Fri Apr 14 21:04:08 2006
|
||||
@@ -80,8 +80,7 @@
|
||||
tv.AppendColumn ("Name", new CellRendererText(), "text", 1);
|
||||
|
||||
foreach (SaveFileItem item in list) {
|
||||
- item.Save=true;
|
||||
- store.AppendValues(item.Save, item.Name);
|
||||
+ store.AppendValues(true, item.Name);
|
||||
}
|
||||
|
||||
return tv;
|
@ -1,12 +1,12 @@
|
||||
bin/bless
|
||||
lib/bless-0.4.0/bin/bless.exe
|
||||
lib/bless-0.4.0/data/bless-16-bytes-per-row.layout
|
||||
lib/bless-0.4.0/data/bless-48x48.png
|
||||
lib/bless-0.4.0/data/bless-about.png
|
||||
lib/bless-0.4.0/data/bless-all-number-bases.layout
|
||||
lib/bless-0.4.0/data/bless-default.layout
|
||||
lib/bless-0.4.0/data/default-preferences.xml
|
||||
lib/bless-0.4.0/data/help_script.sh
|
||||
lib/bless-0.4.1/bin/bless.exe
|
||||
lib/bless-0.4.1/data/bless-16-bytes-per-row.layout
|
||||
lib/bless-0.4.1/data/bless-48x48.png
|
||||
lib/bless-0.4.1/data/bless-about.png
|
||||
lib/bless-0.4.1/data/bless-all-number-bases.layout
|
||||
lib/bless-0.4.1/data/bless-default.layout
|
||||
lib/bless-0.4.1/data/default-preferences.xml
|
||||
lib/bless-0.4.1/data/help_script.sh
|
||||
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
|
||||
@ -30,6 +30,7 @@ lib/bless-0.4.0/data/help_script.sh
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/ch05s02.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/ch05s03.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/ch06.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/ch07.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/figures/bless_area_focus.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/figures/bless_display_tag.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/user/figures/bless_edit_mode.png
|
||||
@ -53,6 +54,6 @@ share/gnome/pixmaps/bless-48x48.png
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%/user
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%/developer
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
@dirrm lib/bless-0.4.0/data
|
||||
@dirrm lib/bless-0.4.0/bin
|
||||
@dirrm lib/bless-0.4.0
|
||||
@dirrm lib/bless-0.4.1/data
|
||||
@dirrm lib/bless-0.4.1/bin
|
||||
@dirrm lib/bless-0.4.1
|
||||
|
Loading…
Reference in New Issue
Block a user