long awaited centericq-4.9.2 after i finally got to fix the issues

This commit is contained in:
pvalchev 2003-05-11 10:23:55 +00:00
parent 61938358fc
commit c2ff300a6e
7 changed files with 71 additions and 15 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.17 2002/07/10 08:21:31 pvalchev Exp $
# $OpenBSD: Makefile,v 1.18 2003/05/11 10:23:55 pvalchev Exp $
COMMENT= "curses-based icq client implementation"
DISTNAME= centericq-4.7.7
DISTNAME= centericq-4.9.2
CATEGORIES= net
MASTER_SITES= http://konst.org.ua/download/ \
http://konst.home.welcomehome.org/ \
@ -21,6 +21,10 @@ PERMIT_DISTFILES_FTP= Yes
LIB_DEPENDS= sigc.0:libsigc++-*:devel/libsigc++
MODULES= gcc3
MODGCC3_ARCHES= sparc64
MODGCC3_LANGS= c++
USE_GMAKE= Yes
CONFIGURE_STYLE= autoconf
BUILD_DEPENDS= :automake-*:devel/automake

View File

@ -1,3 +1,3 @@
MD5 (centericq-4.7.7.tar.gz) = 9ce6de30777f0b453e01407d4f20bee9
RMD160 (centericq-4.7.7.tar.gz) = f4ef82348c310c438bbf20f85dad70689e122567
SHA1 (centericq-4.7.7.tar.gz) = 09b25738f138152effdf36df6fa13628c383135f
MD5 (centericq-4.9.2.tar.gz) = fb009228b3bc3cf29584601cc82e90df
RMD160 (centericq-4.9.2.tar.gz) = ff9c43cfaf67e9e13ea13dfa5dcfc31fb39b7ffc
SHA1 (centericq-4.9.2.tar.gz) = bfa97d4dd6a3e5c755f032764fa8766bb42406ae

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-aclocal_m4,v 1.5 2001/12/19 00:25:26 pvalchev Exp $
--- aclocal.m4.orig Fri Dec 14 09:31:52 2001
+++ aclocal.m4 Tue Dec 18 16:33:06 2001
@@ -346,10 +346,9 @@ AC_DEFUN(AM_WITH_NLS,
$OpenBSD: patch-aclocal_m4,v 1.6 2003/05/11 10:23:55 pvalchev Exp $
--- aclocal.m4.orig Mon Jan 20 04:44:43 2003
+++ aclocal.m4 Sat May 3 06:37:41 2003
@@ -533,10 +533,9 @@ AC_DEFUN(AM_WITH_NLS,
if test "$gt_cv_func_gettext_libc" != "yes"; then
AC_CHECK_LIB(intl, bindtextdomain,

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-configure_in,v 1.1 2003/05/11 10:23:55 pvalchev Exp $
--- configure.in.orig Sat May 3 07:17:35 2003
+++ configure.in Sat May 3 07:17:50 2003
@@ -108,7 +108,7 @@ AC_CHECK_HEADERS(sstream,,
AC_CHECK_HEADERS(iconv.h)
-AC_CHECK_LIB(iconv, iconv,,
+AC_CHECK_LIB(iconv, libiconv,,
[AC_CHECK_LIB(c, iconv,, AC_MSG_WARN(libiconv not found - Russian codepages translation in MSN and Jabber will not work))])
AC_CHECK_LIB(socket, socket)

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-kkconsui-0_1_src_cmenus_cc,v 1.4 2002/07/10 08:22:12 pvalchev Exp $
--- kkconsui-0.1/src/cmenus.cc.orig Wed Jul 3 16:05:10 2002
+++ kkconsui-0.1/src/cmenus.cc Wed Jul 10 02:17:53 2002
@@ -249,6 +249,7 @@ int verticalmenu::open() {
$OpenBSD: patch-kkconsui-0_1_src_cmenus_cc,v 1.5 2003/05/11 10:23:55 pvalchev Exp $
--- kkconsui-0.1/src/cmenus.cc.orig Sun Oct 6 06:15:12 2002
+++ kkconsui-0.1/src/cmenus.cc Sat May 3 06:37:41 2003
@@ -250,6 +250,7 @@ int verticalmenu::open() {
return 0;
break;
@ -9,7 +9,7 @@ $OpenBSD: patch-kkconsui-0_1_src_cmenus_cc,v 1.4 2002/07/10 08:22:12 pvalchev Ex
case KEY_UP:
if(curelem > 0) {
shownelem(curelem, 0);
@@ -274,6 +275,7 @@ int verticalmenu::open() {
@@ -275,6 +276,7 @@ int verticalmenu::open() {
}
break;

View File

@ -0,0 +1,40 @@
$OpenBSD: patch-po_Makefile_in_in,v 1.1 2003/05/11 10:23:55 pvalchev Exp $
--- po/Makefile.in.in.orig Thu May 8 16:51:19 2003
+++ po/Makefile.in.in Thu May 8 16:52:56 2003
@@ -111,9 +111,9 @@ install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(datadir); \
+ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
+ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
fi
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
@@ -123,7 +123,7 @@ install-data-yes: all
*) destdir=$(localedir);; \
esac; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- dir=$$destdir/$$lang/LC_MESSAGES; \
+ dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $$dir; \
else \
@@ -153,12 +153,12 @@ install-data-yes: all
done
if test "$(PACKAGE)" = "gettext"; then \
if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(gettextsrcdir); \
+ $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
+ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
fi; \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
- $(gettextsrcdir)/Makefile.in.in; \
+ $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
else \
: ; \
fi

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.9 2002/07/10 08:21:31 pvalchev Exp $
@comment $OpenBSD: PLIST,v 1.10 2003/05/11 10:23:55 pvalchev Exp $
bin/centericq
bin/cicqconv
bin/cicqsync