Update to 0.3.3

Take maintainership

PR:		87235
Submitted by:	chinsan <chinsan.tw@gmail.com>
This commit is contained in:
Marcus Alves Grando 2005-10-11 03:07:19 +00:00
parent cfc454a864
commit 43ec299ee2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=144881
6 changed files with 51 additions and 5 deletions

View File

@ -6,14 +6,14 @@
#
PORTNAME= pcmanx
PORTVERSION= 0.3.2
PORTVERSION= 0.3.3
CATEGORIES= chinese net gnome
MASTER_SITES= http://pcmanx.csie.net/release/ \
http://bbs.ilc.edu.tw/~chinsan/pcmanx/
DISTNAME= pcmanx-pure-gtk2-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= PCManX is a BBS client using GTK+ 2.x
MAINTAINER= chinsan.tw@gmail.com
COMMENT= BBS client using GTK+ 2.x
USE_GNOME= gtk20 intlhack
USE_GCC= 3.3+

View File

@ -1,2 +1,2 @@
MD5 (pcmanx-pure-gtk2-0.3.2.tar.gz) = 08f70a795f72e2095e5b94ff306fa9cb
SIZE (pcmanx-pure-gtk2-0.3.2.tar.gz) = 586425
MD5 (pcmanx-pure-gtk2-0.3.3.tar.gz) = 3d52f2f633184c31739c44854d77bd4c
SIZE (pcmanx-pure-gtk2-0.3.3.tar.gz) = 595590

View File

@ -0,0 +1,13 @@
--- po/zh_TW.po.orig Tue Oct 11 02:55:28 2005
+++ po/zh_TW.po Tue Oct 11 02:54:51 2005
@@ -413,8 +413,8 @@
msgstr "顯示字型使用反鋸齒 (重新啟動程式後才有效)"
#: ../src/generalprefpage.cpp:67
-msgid "Use \"wget\" to download files."
-msgstr "使用 \"wget\" 下載檔案. (.rar .zip .tgz .tbz)"
+msgid "Use \"fetch\" to download files."
+msgstr "使用 \"fetch\" 下載檔案. (.rar .zip .tgz .tbz)"
#: ../src/generalprefpage.cpp:75
msgid "Display popup notifier for "

View File

@ -0,0 +1,11 @@
--- src/generalprefpage.cpp.orig Tue Oct 11 02:57:13 2005
+++ src/generalprefpage.cpp Tue Oct 11 02:56:43 2005
@@ -64,7 +64,7 @@
gtk_widget_show (m_AAFont);
gtk_box_pack_start (GTK_BOX (m_Widget), m_AAFont, FALSE, FALSE, 0);
- m_pWgetFiles = gtk_check_button_new_with_mnemonic (_("Use \"wget\" to download files."));
+ m_pWgetFiles = gtk_check_button_new_with_mnemonic (_("Use \"fetch\" to download files."));
gtk_widget_show (m_pWgetFiles);
gtk_box_pack_start (GTK_BOX (m_Widget), m_pWgetFiles, FALSE, FALSE, 0);

View File

@ -0,0 +1,11 @@
--- src/mainframe.cpp.orig Tue Oct 11 02:46:46 2005
+++ src/mainframe.cpp Tue Oct 11 02:47:07 2005
@@ -1033,7 +1033,7 @@
child_pid = fork();
if (child_pid == 0)
{
- int t_nRet = system("wget -O ~/.pcmanx/sitelist http://free.ym.edu.tw/pcman/site_list.utf8");
+ int t_nRet = system("fetch -o ~/.pcmanx/sitelist http://free.ym.edu.tw/pcman/site_list.utf8");
if (t_nRet == 0)
kill(parent_pid, SIGUSR1);
else

View File

@ -0,0 +1,11 @@
--- src/view/telnetview.cpp.orig Tue Oct 11 02:44:46 2005
+++ src/view/telnetview.cpp Tue Oct 11 02:45:04 2005
@@ -334,7 +334,7 @@
strncmp(t_pcDot, "tbz", 3) == 0)
{
string t_sURL = sURL;
- t_sURL.insert(0, "wget ");
+ t_sURL.insert(0, "fetch ");
t_sURL.append(" &");
system(t_sURL.c_str());
return;