Author changed distfile and plugged back NLS support, so re-add
our gettext tweaks and update checksum.
This commit is contained in:
parent
2a9f29dd86
commit
9a81894fbe
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.6 2001/06/30 17:34:13 pvalchev Exp $
|
||||
# $OpenBSD: Makefile,v 1.7 2001/06/30 20:17:36 pvalchev Exp $
|
||||
|
||||
COMMENT= "curses-based icq client implementation"
|
||||
|
||||
@ -10,6 +10,8 @@ MASTER_SITES= http://konst.org.ua/download/ \
|
||||
|
||||
HOMEPAGE= http://konst.org.ua/software.centericq.html
|
||||
|
||||
LIB_DEPENDS= intl.1::devel/gettext
|
||||
|
||||
MAINTAINER= Peter Valchev <pvalchev@openbsd.org>
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
@ -19,7 +21,9 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
USE_GMAKE= Yes
|
||||
CONFIGURE_STYLE= autoconf
|
||||
CONFIGURE_ENV= PREFIX="${PREFIX}"
|
||||
CONFIGURE_ENV= PREFIX="${PREFIX}" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/centericq
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (centericq-3.34.15.tar.gz) = bdd03e5e719f3d673cfdf1ee02a2b3e9
|
||||
RMD160 (centericq-3.34.15.tar.gz) = b4bcea050b8b00359d4b39eb25027231e44ad7e6
|
||||
SHA1 (centericq-3.34.15.tar.gz) = d17cd683d91e9699a42e14934fcc1f73f41e0386
|
||||
MD5 (centericq-3.34.15.tar.gz) = 5a27a61010f4dbcfdcb883dae3741174
|
||||
RMD160 (centericq-3.34.15.tar.gz) = 919fce7027bd003ad74afb842b6b82b3cfe02785
|
||||
SHA1 (centericq-3.34.15.tar.gz) = 5a0e522e083190a2ddc210ec1a7e7fc6441e57d0
|
||||
|
16
net/centericq/patches/patch-aclocal_m4
Normal file
16
net/centericq/patches/patch-aclocal_m4
Normal file
@ -0,0 +1,16 @@
|
||||
$OpenBSD: patch-aclocal_m4,v 1.3 2001/06/30 20:17:37 pvalchev Exp $
|
||||
--- aclocal.m4.orig Sat Jun 30 13:28:52 2001
|
||||
+++ aclocal.m4 Sat Jun 30 13:33:05 2001
|
||||
@@ -173,10 +173,10 @@ AC_DEFUN(AM_WITH_NLS,
|
||||
|
||||
if test "$gt_cv_func_gettext_libc" != "yes"; then
|
||||
AC_CHECK_LIB(intl, bindtextdomain,
|
||||
- [AC_CACHE_CHECK([for gettext in libintl],
|
||||
- gt_cv_func_gettext_libintl,
|
||||
+ [AC_CACHE_VAL(gt_cv_func_gettext_libintl,
|
||||
[AC_CHECK_LIB(intl, gettext,
|
||||
gt_cv_func_gettext_libintl=yes,
|
||||
+ [gt_cv_func_gettext_libintl=yes; LIBS="$LIBS -lintl"],
|
||||
gt_cv_func_gettext_libintl=no)],
|
||||
gt_cv_func_gettext_libintl=no)])
|
||||
fi
|
@ -1,11 +1,11 @@
|
||||
$OpenBSD: patch-src_Makefile_am,v 1.1 2001/06/30 17:34:14 pvalchev Exp $
|
||||
--- src/Makefile.am.orig Fri Jun 29 22:53:41 2001
|
||||
+++ src/Makefile.am Fri Jun 29 22:54:14 2001
|
||||
$OpenBSD: patch-src_Makefile_am,v 1.2 2001/06/30 20:17:38 pvalchev Exp $
|
||||
--- src/Makefile.am.orig Sat Jun 30 13:42:30 2001
|
||||
+++ src/Makefile.am Sat Jun 30 13:42:49 2001
|
||||
@@ -3,6 +3,6 @@ INCLUDES = -I$(top_srcdir)/kkstrtext-0.1
|
||||
bin_PROGRAMS = centericq
|
||||
centericq_SOURCES = centericq.cc centermain.cc icqconf.cc icqcontact.cc icqcontacts.cc icqdialogs.cc icqface.cc icqhist.cc icqhook.cc icqmlist.cc icqoffline.cc
|
||||
centericq_LDFLAGS = -L$(top_srcdir)/kkstrtext-0.1 -L$(top_srcdir)/kkconsui-0.1 -L$(top_srcdir)/kksystr-0.1 -L$(top_srcdir)/icqlib-1.2
|
||||
-centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lncurses @LIBS@
|
||||
+centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lcurses @LIBS@
|
||||
-centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lncurses @LIBS@ @INTLLIBS@
|
||||
+centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lcurses @LIBS@ @INTLLIBS@
|
||||
EXTRA_DIST = centericq.cc centermain.cc icqconf.cc icqcontact.cc icqcontacts.cc icqdialogs.cc icqface.cc icqhist.cc icqhook.cc icqmlist.cc icqoffline.cc centericq.h icqconf.h icqcontact.h icqcontacts.h icqface.h icqhist.h icqhook.h icqmlist.h icqoffline.h
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
@ -1,27 +1,12 @@
|
||||
$OpenBSD: patch-src_Makefile_in,v 1.1 2001/06/30 17:34:14 pvalchev Exp $
|
||||
--- src/Makefile.in.orig Fri Jun 29 22:53:37 2001
|
||||
+++ src/Makefile.in Fri Jun 29 22:54:44 2001
|
||||
@@ -1,4 +1,4 @@
|
||||
-# Makefile.in generated automatically by automake 1.4 from Makefile.am
|
||||
+# Makefile.in generated automatically by automake 1.4-p1 from Makefile.am
|
||||
|
||||
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
@@ -69,7 +69,7 @@ INCLUDES = -I$(top_srcdir)/kkstrtext-0.1
|
||||
$OpenBSD: patch-src_Makefile_in,v 1.2 2001/06/30 20:17:38 pvalchev Exp $
|
||||
--- src/Makefile.in.orig Sat Jun 30 13:42:20 2001
|
||||
+++ src/Makefile.in Sat Jun 30 13:42:45 2001
|
||||
@@ -89,7 +89,7 @@ INCLUDES = -I$(top_srcdir)/kkstrtext-0.1
|
||||
bin_PROGRAMS = centericq
|
||||
centericq_SOURCES = centericq.cc centermain.cc icqconf.cc icqcontact.cc icqcontacts.cc icqdialogs.cc icqface.cc icqhist.cc icqhook.cc icqmlist.cc icqoffline.cc
|
||||
centericq_LDFLAGS = -L$(top_srcdir)/kkstrtext-0.1 -L$(top_srcdir)/kkconsui-0.1 -L$(top_srcdir)/kksystr-0.1 -L$(top_srcdir)/icqlib-1.2
|
||||
-centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lncurses @LIBS@
|
||||
+centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lcurses @LIBS@
|
||||
-centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lncurses @LIBS@ @INTLLIBS@
|
||||
+centericq_LDADD = -lkkstrtext -lkkconsui -lkksystr -licqlib -lcurses @LIBS@ @INTLLIBS@
|
||||
EXTRA_DIST = centericq.cc centermain.cc icqconf.cc icqcontact.cc icqcontacts.cc icqdialogs.cc icqface.cc icqhist.cc icqhook.cc icqmlist.cc icqoffline.cc centericq.h icqconf.h icqcontact.h icqcontacts.h icqface.h icqhist.h icqhook.h icqmlist.h icqoffline.h
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
@@ -93,7 +93,7 @@ DIST_COMMON = Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
-TAR = gtar
|
||||
+TAR = tar
|
||||
GZIP_ENV = --best
|
||||
DEP_FILES = .deps/centericq.P .deps/centermain.P .deps/icqconf.P \
|
||||
.deps/icqcontact.P .deps/icqcontacts.P .deps/icqdialogs.P \
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2001/06/30 17:34:14 pvalchev Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2001/06/30 20:17:38 pvalchev Exp $
|
||||
bin/centericq
|
||||
man/man1/centericq.1
|
||||
share/centericq/cont.wav
|
||||
@ -9,5 +9,13 @@ share/centericq/online.wav
|
||||
share/centericq/url.wav
|
||||
share/doc/centericq/FAQ
|
||||
share/doc/centericq/README
|
||||
share/locale/cs/LC_MESSAGES/centericq.mo
|
||||
share/locale/de/LC_MESSAGES/centericq.mo
|
||||
share/locale/hu/LC_MESSAGES/centericq.mo
|
||||
share/locale/pl/LC_MESSAGES/centericq.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/centericq.mo
|
||||
share/locale/ro/LC_MESSAGES/centericq.mo
|
||||
share/locale/ru/LC_MESSAGES/centericq.mo
|
||||
share/locale/zh_TW.Big5/LC_MESSAGES/centericq.mo
|
||||
@dirrm share/doc/centericq
|
||||
@dirrm share/centericq
|
||||
|
Loading…
Reference in New Issue
Block a user