mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
- Update to version 0.2.0
- Changelog: http://cvs.savannah.gnu.org/viewcvs/weechat/weechat/ChangeLog?rev=1.328
This commit is contained in:
parent
b5f6c50a11
commit
4668753cb2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=170988
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= weechat
|
||||
PORTVERSION= 0.1.9
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.2.0
|
||||
CATEGORIES= irc
|
||||
MASTER_SITES= http://flashcode.free.fr/flashtux/weechat/ \
|
||||
http://weechat.flashtux.org/download/
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (weechat-0.1.9.tar.bz2) = 0caed065da9a4ba34834eadad67dac97
|
||||
SHA256 (weechat-0.1.9.tar.bz2) = d66f6b29f12436818b3a35181e985a2f0b1d0ba9cf0d89d376c02d9bfa865f0c
|
||||
SIZE (weechat-0.1.9.tar.bz2) = 999710
|
||||
MD5 (weechat-0.2.0.tar.bz2) = 69c292237bebd4b7a1ff29c0f9c76380
|
||||
SHA256 (weechat-0.2.0.tar.bz2) = 3cf60362b2923de7df5231937d4eee7bcc06d26d5fd401060198ccdc857aafae
|
||||
SIZE (weechat-0.2.0.tar.bz2) = 1047146
|
||||
|
@ -1,47 +0,0 @@
|
||||
--- configure.in.orig Thu May 25 02:46:22 2006
|
||||
+++ configure.in Sat Jun 17 00:39:13 2006
|
||||
@@ -537,6 +537,44 @@
|
||||
fi
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
+# iconv
|
||||
+# ------------------------------------------------------------------------------
|
||||
+
|
||||
+iconv_found="no"
|
||||
+
|
||||
+AC_CHECK_HEADER(iconv.h,ac_found_iconv_header="yes",ac_found_iconv_header="no")
|
||||
+if test "x$ac_found_iconv_header" = "xyes" ; then
|
||||
+ AC_CHECK_LIB(iconv,iconv_open,ac_found_iconv_lib="yes",ac_found_iconv_lib="no")
|
||||
+ if test "x$ac_found_iconv_lib" = "xyes" ; then
|
||||
+ LIBS="$LIBS -liconv"
|
||||
+ fi
|
||||
+ AC_MSG_CHECKING(for iconv usability in programs)
|
||||
+ AC_TRY_RUN([
|
||||
+ #include <iconv.h>
|
||||
+ int main(int argc, char **argv) {
|
||||
+ iconv_t conv = iconv_open("ISO8859-1", "UTF-8");
|
||||
+ if (conv != (iconv_t) -1) {
|
||||
+ return 0;
|
||||
+ }
|
||||
+ return 1;
|
||||
+ }],iconv_found="yes")
|
||||
+ if test "x$iconv_found" = "xno" ; then
|
||||
+ AC_MSG_RESULT(no)
|
||||
+ else
|
||||
+ AC_MSG_RESULT(yes)
|
||||
+ fi
|
||||
+fi
|
||||
+
|
||||
+if test "x$iconv_found" = "xno" ; then
|
||||
+ AC_MSG_ERROR([
|
||||
+*** Iconv headers and/or libraries couldn't be found in your system.
|
||||
+*** Try to install them with your software package manager.
|
||||
+*** WeeChat can't be built without Iconv support.])
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
+# ------------------------------------------------------------------------------
|
||||
# general vars
|
||||
# ------------------------------------------------------------------------------
|
||||
|
@ -2,24 +2,30 @@ bin/weechat-curses
|
||||
%%DOCSDIR%%/html/en/weechat-doc.css
|
||||
%%DOCSDIR%%/html/fr/weechat-doc.css
|
||||
%%DOCSDIR%%/html/de/weechat-doc.css
|
||||
%%DOCSDIR%%/weechat_quickstart.en.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.fr.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.de.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.ru.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.pl.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.cs.txt
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/hu/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/cs/LC_MESSAGES/weechat.mo
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.so.0
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.so
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.la
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.a
|
||||
%%PERL%%lib/weechat/plugins/libperl.so.0
|
||||
%%PERL%%lib/weechat/plugins/libperl.so
|
||||
%%PERL%%lib/weechat/plugins/libperl.la
|
||||
%%PERL%%lib/weechat/plugins/libperl.a
|
||||
%%RUBY%%lib/weechat/plugins/libruby.so.0
|
||||
%%RUBY%%lib/weechat/plugins/libruby.so
|
||||
%%RUBY%%lib/weechat/plugins/libruby.la
|
||||
%%RUBY%%lib/weechat/plugins/libruby.a
|
||||
%%PYTHON%%lib/weechat/plugins/python.so.0
|
||||
%%PYTHON%%lib/weechat/plugins/python.so
|
||||
%%PYTHON%%lib/weechat/plugins/python.la
|
||||
%%PYTHON%%lib/weechat/plugins/python.a
|
||||
%%PERL%%lib/weechat/plugins/perl.so.0
|
||||
%%PERL%%lib/weechat/plugins/perl.so
|
||||
%%PERL%%lib/weechat/plugins/perl.la
|
||||
%%PERL%%lib/weechat/plugins/perl.a
|
||||
%%RUBY%%lib/weechat/plugins/ruby.so.0
|
||||
%%RUBY%%lib/weechat/plugins/ruby.so
|
||||
%%RUBY%%lib/weechat/plugins/ruby.la
|
||||
%%RUBY%%lib/weechat/plugins/ruby.a
|
||||
@dirrmtry %%DOCSDIR%%/html/fr
|
||||
@dirrmtry %%DOCSDIR%%/html/en
|
||||
@dirrmtry %%DOCSDIR%%/html/de
|
||||
|
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= weechat
|
||||
PORTVERSION= 0.1.9
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.2.0
|
||||
CATEGORIES= irc
|
||||
MASTER_SITES= http://flashcode.free.fr/flashtux/weechat/ \
|
||||
http://weechat.flashtux.org/download/
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (weechat-0.1.9.tar.bz2) = 0caed065da9a4ba34834eadad67dac97
|
||||
SHA256 (weechat-0.1.9.tar.bz2) = d66f6b29f12436818b3a35181e985a2f0b1d0ba9cf0d89d376c02d9bfa865f0c
|
||||
SIZE (weechat-0.1.9.tar.bz2) = 999710
|
||||
MD5 (weechat-0.2.0.tar.bz2) = 69c292237bebd4b7a1ff29c0f9c76380
|
||||
SHA256 (weechat-0.2.0.tar.bz2) = 3cf60362b2923de7df5231937d4eee7bcc06d26d5fd401060198ccdc857aafae
|
||||
SIZE (weechat-0.2.0.tar.bz2) = 1047146
|
||||
|
@ -1,47 +0,0 @@
|
||||
--- configure.in.orig Thu May 25 02:46:22 2006
|
||||
+++ configure.in Sat Jun 17 00:39:13 2006
|
||||
@@ -537,6 +537,44 @@
|
||||
fi
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
+# iconv
|
||||
+# ------------------------------------------------------------------------------
|
||||
+
|
||||
+iconv_found="no"
|
||||
+
|
||||
+AC_CHECK_HEADER(iconv.h,ac_found_iconv_header="yes",ac_found_iconv_header="no")
|
||||
+if test "x$ac_found_iconv_header" = "xyes" ; then
|
||||
+ AC_CHECK_LIB(iconv,iconv_open,ac_found_iconv_lib="yes",ac_found_iconv_lib="no")
|
||||
+ if test "x$ac_found_iconv_lib" = "xyes" ; then
|
||||
+ LIBS="$LIBS -liconv"
|
||||
+ fi
|
||||
+ AC_MSG_CHECKING(for iconv usability in programs)
|
||||
+ AC_TRY_RUN([
|
||||
+ #include <iconv.h>
|
||||
+ int main(int argc, char **argv) {
|
||||
+ iconv_t conv = iconv_open("ISO8859-1", "UTF-8");
|
||||
+ if (conv != (iconv_t) -1) {
|
||||
+ return 0;
|
||||
+ }
|
||||
+ return 1;
|
||||
+ }],iconv_found="yes")
|
||||
+ if test "x$iconv_found" = "xno" ; then
|
||||
+ AC_MSG_RESULT(no)
|
||||
+ else
|
||||
+ AC_MSG_RESULT(yes)
|
||||
+ fi
|
||||
+fi
|
||||
+
|
||||
+if test "x$iconv_found" = "xno" ; then
|
||||
+ AC_MSG_ERROR([
|
||||
+*** Iconv headers and/or libraries couldn't be found in your system.
|
||||
+*** Try to install them with your software package manager.
|
||||
+*** WeeChat can't be built without Iconv support.])
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
+# ------------------------------------------------------------------------------
|
||||
# general vars
|
||||
# ------------------------------------------------------------------------------
|
||||
|
@ -2,24 +2,30 @@ bin/weechat-curses
|
||||
%%DOCSDIR%%/html/en/weechat-doc.css
|
||||
%%DOCSDIR%%/html/fr/weechat-doc.css
|
||||
%%DOCSDIR%%/html/de/weechat-doc.css
|
||||
%%DOCSDIR%%/weechat_quickstart.en.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.fr.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.de.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.ru.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.pl.txt
|
||||
%%DOCSDIR%%/weechat_quickstart.cs.txt
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/hu/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/weechat.mo
|
||||
%%NLS%%share/locale/cs/LC_MESSAGES/weechat.mo
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.so.0
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.so
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.la
|
||||
%%PYTHON%%lib/weechat/plugins/libpython.a
|
||||
%%PERL%%lib/weechat/plugins/libperl.so.0
|
||||
%%PERL%%lib/weechat/plugins/libperl.so
|
||||
%%PERL%%lib/weechat/plugins/libperl.la
|
||||
%%PERL%%lib/weechat/plugins/libperl.a
|
||||
%%RUBY%%lib/weechat/plugins/libruby.so.0
|
||||
%%RUBY%%lib/weechat/plugins/libruby.so
|
||||
%%RUBY%%lib/weechat/plugins/libruby.la
|
||||
%%RUBY%%lib/weechat/plugins/libruby.a
|
||||
%%PYTHON%%lib/weechat/plugins/python.so.0
|
||||
%%PYTHON%%lib/weechat/plugins/python.so
|
||||
%%PYTHON%%lib/weechat/plugins/python.la
|
||||
%%PYTHON%%lib/weechat/plugins/python.a
|
||||
%%PERL%%lib/weechat/plugins/perl.so.0
|
||||
%%PERL%%lib/weechat/plugins/perl.so
|
||||
%%PERL%%lib/weechat/plugins/perl.la
|
||||
%%PERL%%lib/weechat/plugins/perl.a
|
||||
%%RUBY%%lib/weechat/plugins/ruby.so.0
|
||||
%%RUBY%%lib/weechat/plugins/ruby.so
|
||||
%%RUBY%%lib/weechat/plugins/ruby.la
|
||||
%%RUBY%%lib/weechat/plugins/ruby.a
|
||||
@dirrmtry %%DOCSDIR%%/html/fr
|
||||
@dirrmtry %%DOCSDIR%%/html/en
|
||||
@dirrmtry %%DOCSDIR%%/html/de
|
||||
|
Loading…
Reference in New Issue
Block a user