1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

Update to 0.13.0

PR:		ports/115415
Submitted by:	maintainer
This commit is contained in:
Xin LI 2007-08-20 05:28:29 +00:00
parent 74afab7418
commit 898f84cedd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=197939
18 changed files with 26 additions and 144 deletions

View File

@ -5,10 +5,9 @@
# $FreeBSD$
PORTNAME= kdesvn
PORTVERSION= 0.12.1
PORTVERSION= 0.13.0
CATEGORIES= devel kde
MASTER_SITES= http://www.alwins-world.de/programs/download/${PORTNAME}/${PORTVERSION:R}.x/ \
http://www.yuanjue.net/download/
MASTER_SITES= http://www.alwins-world.de/programs/download/${PORTNAME}/${PORTVERSION:R}.x/
MAINTAINER= yuanjue@FreeBSD.org
COMMENT= KDE frontend for Subversion
@ -33,6 +32,7 @@ USE_KDELIBS_VER=3
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INSTALLS_ICONS= yes
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
@ -42,7 +42,7 @@ CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
DOCSDIR= ${PREFIX}/share/doc/HTML/en/kdesvn
DOCSDIR= ${PREFIX}/share/doc/HTML/en/${PORTNAME}
MAN1= kdesvn.1 kdesvnaskpass.1

View File

@ -1,3 +1,3 @@
MD5 (kdesvn-0.12.1.tar.bz2) = 160bdbbfb47b7c0ee1ce8ccacd18cedc
SHA256 (kdesvn-0.12.1.tar.bz2) = a20932070625c7af1786b5a3ab44d1a4d51802d05ade2e13cc2e680aefdca1c1
SIZE (kdesvn-0.12.1.tar.bz2) = 1237520
MD5 (kdesvn-0.13.0.tar.bz2) = 8722253b4fe7789e2394d0f9f85dc52f
SHA256 (kdesvn-0.13.0.tar.bz2) = eac9b85d1f99c3048145bd46c3537870f92fb079e46c14b424ffb6c93642f249
SIZE (kdesvn-0.13.0.tar.bz2) = 1243539

View File

@ -1,11 +0,0 @@
--- src/commandline_part.cpp.orig Sat Apr 29 01:22:18 2006
+++ src/commandline_part.cpp Sat Apr 29 01:22:57 2006
@@ -33,7 +33,7 @@
KStandardDirs::kde_default("data")+ QString::fromLatin1( inst->instanceName() ) + '/' );
- m_pCPart = new CommandExec(this,name?QString(name)+QString("_exec"):"command_executer",args);
+ m_pCPart = new CommandExec(this,name?QString(name)+QString("_exec"):QString::fromLatin1("command_executer"),args);
}
commandline_part::~commandline_part()

View File

@ -1,11 +0,0 @@
--- src/svnfrontend/importdir_logmsg.cpp.orig Fri Apr 28 15:15:33 2006
+++ src/svnfrontend/importdir_logmsg.cpp Fri Apr 28 15:16:21 2006
@@ -43,7 +43,7 @@
void Importdir_logmsg::createDirboxDir(const QString & which)
{
- m_createDirBox->setText(i18n("Create subdir %1 on import").arg(which.isEmpty()?"(Last part)":which));
+ m_createDirBox->setText(i18n("Create subdir %1 on import").arg(which.isEmpty()?i18n("(Last part)"):which));
}
#include "importdir_logmsg.moc"

View File

@ -1,11 +0,0 @@
--- src/svnqt/dirent.cpp.orig Fri Apr 28 16:50:10 2006
+++ src/svnqt/dirent.cpp Fri Apr 28 16:50:28 2006
@@ -54,7 +54,7 @@
hasProps (dirEntry->has_props != 0),
createdRev (dirEntry->created_rev), time (dirEntry->time), m_Lock()
{
- lastAuthor = dirEntry->last_author == 0 ? "" : QString::FROMUTF8(dirEntry->last_author);
+ lastAuthor = dirEntry->last_author == 0 ? QString::fromLatin1("") : QString::FROMUTF8(dirEntry->last_author);
}
Data (const DirEntry & src)

View File

@ -1,13 +0,0 @@
--- src/svnqt/log_entry.cpp.orig Sat Apr 29 00:36:34 2006
+++ src/svnqt/log_entry.cpp Sat Apr 29 00:37:18 2006
@@ -93,8 +93,8 @@
}
revision = revision_;
- author = author_ == 0 ? "" : QString::FROMUTF8(author_);
- message = message_ == 0 ? "" : QString::FROMUTF8(message_);
+ author = author_ == 0 ? QString::fromLatin1("") : QString::FROMUTF8(author_);
+ message = message_ == 0 ? QString::fromLatin1("") : QString::FROMUTF8(message_);
}
}

View File

@ -1,11 +0,0 @@
--- src/svnqt/wc.cpp.orig Sun Jul 23 03:30:36 2006
+++ src/svnqt/wc.cpp Sun Jul 23 03:36:09 2006
@@ -113,7 +113,7 @@
QString result = "";
const svn_wc_entry_t *entry;
entry = getEntry( path );
- result = entry?QString::FROMUTF8(entry->repos):"";
+ result = entry ? QString::FROMUTF8(entry->repos) : QString::fromLatin1("");
return result;
}

View File

@ -1,9 +1,9 @@
KDESvn is yet another client for Subversion. It uses the native KDE API
instead of an extra library like GAMBAS and it is using the native Subversion
delevelopment API instead of just parsing the output of the commandline
tool like most other clients do.
KDESvn is a frontend to the subversion vcs. In difference to most other
tools it uses the subversion C-Api direct via a c++ wrapper made by
Rapid SVN and doesn't parse the output of the subversion client. So it is
a real client itself instead of a frontend to the command line tool.
WWW: http://www.alwins-world.de/programs/kdesvn/
- Yuan Jue
yuanjue@yuanjue.net
yuanjue@FreeBSD.org

View File

@ -38,7 +38,7 @@ lib/kde3/libkdesvnpart.so
lib/libsvnqt.la
lib/libsvnqt.so
lib/libsvnqt.so.3
lib/libsvnqt.so.3.1.2
lib/libsvnqt.so.3.2.0
share/applications/kde/kdesvn.desktop
share/apps/kdesvn/kdesvnui.rc
share/apps/kdesvnpart/kdesvn_part.rc
@ -273,8 +273,6 @@ share/services/svn+http.protocol
share/services/svn+https.protocol
share/services/svn+ssh.protocol
share/services/svn.protocol
@dirrmtry share/locale/es/LC_MESSAGES
@dirrmtry share/locale/es
@dirrmtry share/services/kded
@dirrm share/apps/kdesvnpart
@dirrm share/apps/kdesvn

View File

@ -5,10 +5,9 @@
# $FreeBSD$
PORTNAME= kdesvn
PORTVERSION= 0.12.1
PORTVERSION= 0.13.0
CATEGORIES= devel kde
MASTER_SITES= http://www.alwins-world.de/programs/download/${PORTNAME}/${PORTVERSION:R}.x/ \
http://www.yuanjue.net/download/
MASTER_SITES= http://www.alwins-world.de/programs/download/${PORTNAME}/${PORTVERSION:R}.x/
MAINTAINER= yuanjue@FreeBSD.org
COMMENT= KDE frontend for Subversion
@ -33,6 +32,7 @@ USE_KDELIBS_VER=3
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INSTALLS_ICONS= yes
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
@ -42,7 +42,7 @@ CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
DOCSDIR= ${PREFIX}/share/doc/HTML/en/kdesvn
DOCSDIR= ${PREFIX}/share/doc/HTML/en/${PORTNAME}
MAN1= kdesvn.1 kdesvnaskpass.1

View File

@ -1,3 +1,3 @@
MD5 (kdesvn-0.12.1.tar.bz2) = 160bdbbfb47b7c0ee1ce8ccacd18cedc
SHA256 (kdesvn-0.12.1.tar.bz2) = a20932070625c7af1786b5a3ab44d1a4d51802d05ade2e13cc2e680aefdca1c1
SIZE (kdesvn-0.12.1.tar.bz2) = 1237520
MD5 (kdesvn-0.13.0.tar.bz2) = 8722253b4fe7789e2394d0f9f85dc52f
SHA256 (kdesvn-0.13.0.tar.bz2) = eac9b85d1f99c3048145bd46c3537870f92fb079e46c14b424ffb6c93642f249
SIZE (kdesvn-0.13.0.tar.bz2) = 1243539

View File

@ -1,11 +0,0 @@
--- src/commandline_part.cpp.orig Sat Apr 29 01:22:18 2006
+++ src/commandline_part.cpp Sat Apr 29 01:22:57 2006
@@ -33,7 +33,7 @@
KStandardDirs::kde_default("data")+ QString::fromLatin1( inst->instanceName() ) + '/' );
- m_pCPart = new CommandExec(this,name?QString(name)+QString("_exec"):"command_executer",args);
+ m_pCPart = new CommandExec(this,name?QString(name)+QString("_exec"):QString::fromLatin1("command_executer"),args);
}
commandline_part::~commandline_part()

View File

@ -1,11 +0,0 @@
--- src/svnfrontend/importdir_logmsg.cpp.orig Fri Apr 28 15:15:33 2006
+++ src/svnfrontend/importdir_logmsg.cpp Fri Apr 28 15:16:21 2006
@@ -43,7 +43,7 @@
void Importdir_logmsg::createDirboxDir(const QString & which)
{
- m_createDirBox->setText(i18n("Create subdir %1 on import").arg(which.isEmpty()?"(Last part)":which));
+ m_createDirBox->setText(i18n("Create subdir %1 on import").arg(which.isEmpty()?i18n("(Last part)"):which));
}
#include "importdir_logmsg.moc"

View File

@ -1,11 +0,0 @@
--- src/svnqt/dirent.cpp.orig Fri Apr 28 16:50:10 2006
+++ src/svnqt/dirent.cpp Fri Apr 28 16:50:28 2006
@@ -54,7 +54,7 @@
hasProps (dirEntry->has_props != 0),
createdRev (dirEntry->created_rev), time (dirEntry->time), m_Lock()
{
- lastAuthor = dirEntry->last_author == 0 ? "" : QString::FROMUTF8(dirEntry->last_author);
+ lastAuthor = dirEntry->last_author == 0 ? QString::fromLatin1("") : QString::FROMUTF8(dirEntry->last_author);
}
Data (const DirEntry & src)

View File

@ -1,13 +0,0 @@
--- src/svnqt/log_entry.cpp.orig Sat Apr 29 00:36:34 2006
+++ src/svnqt/log_entry.cpp Sat Apr 29 00:37:18 2006
@@ -93,8 +93,8 @@
}
revision = revision_;
- author = author_ == 0 ? "" : QString::FROMUTF8(author_);
- message = message_ == 0 ? "" : QString::FROMUTF8(message_);
+ author = author_ == 0 ? QString::fromLatin1("") : QString::FROMUTF8(author_);
+ message = message_ == 0 ? QString::fromLatin1("") : QString::FROMUTF8(message_);
}
}

View File

@ -1,11 +0,0 @@
--- src/svnqt/wc.cpp.orig Sun Jul 23 03:30:36 2006
+++ src/svnqt/wc.cpp Sun Jul 23 03:36:09 2006
@@ -113,7 +113,7 @@
QString result = "";
const svn_wc_entry_t *entry;
entry = getEntry( path );
- result = entry?QString::FROMUTF8(entry->repos):"";
+ result = entry ? QString::FROMUTF8(entry->repos) : QString::fromLatin1("");
return result;
}

View File

@ -1,9 +1,9 @@
KDESvn is yet another client for Subversion. It uses the native KDE API
instead of an extra library like GAMBAS and it is using the native Subversion
delevelopment API instead of just parsing the output of the commandline
tool like most other clients do.
KDESvn is a frontend to the subversion vcs. In difference to most other
tools it uses the subversion C-Api direct via a c++ wrapper made by
Rapid SVN and doesn't parse the output of the subversion client. So it is
a real client itself instead of a frontend to the command line tool.
WWW: http://www.alwins-world.de/programs/kdesvn/
- Yuan Jue
yuanjue@yuanjue.net
yuanjue@FreeBSD.org

View File

@ -38,7 +38,7 @@ lib/kde3/libkdesvnpart.so
lib/libsvnqt.la
lib/libsvnqt.so
lib/libsvnqt.so.3
lib/libsvnqt.so.3.1.2
lib/libsvnqt.so.3.2.0
share/applications/kde/kdesvn.desktop
share/apps/kdesvn/kdesvnui.rc
share/apps/kdesvnpart/kdesvn_part.rc
@ -273,8 +273,6 @@ share/services/svn+http.protocol
share/services/svn+https.protocol
share/services/svn+ssh.protocol
share/services/svn.protocol
@dirrmtry share/locale/es/LC_MESSAGES
@dirrmtry share/locale/es
@dirrmtry share/services/kded
@dirrm share/apps/kdesvnpart
@dirrm share/apps/kdesvn