mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Update licq to version 0.61
PR: 11453 Submitted by: maintainer
This commit is contained in:
parent
48fb7f9f4b
commit
a89d8b834b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18323
24 changed files with 195 additions and 414 deletions
|
@ -3,24 +3,31 @@
|
|||
# Date created: 2 July 1998
|
||||
# Whom: Brian Feldman
|
||||
#
|
||||
# $Id: Makefile,v 1.4 1998/08/12 06:29:32 asami Exp $
|
||||
# $Id: Makefile,v 1.5 1998/11/02 04:04:40 steve Exp $
|
||||
#
|
||||
|
||||
DISTNAME= licq-0.44
|
||||
DISTNAME= licq-0.61
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://pages.infinit.net/fairoff/licq/
|
||||
MASTER_SITES= ftp://ftp.wibble.net/pub/licq/srcs/ \
|
||||
ftp://licq.darkorb.net/srcs/ \
|
||||
ftp://ftp.fanfic.org/pub/licq/srcs/ \
|
||||
ftp://ftp.inter-i.uni-mainz.de/pub/licq/srcs/
|
||||
|
||||
MAINTAINER= green@unixhelp.org
|
||||
|
||||
FETCH_BEFORE_ARGS= -b
|
||||
|
||||
USE_QT= yes
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt --with-qt-libs=${X11BASE}/lib
|
||||
|
||||
MAN1= licq.1
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/share/licq
|
||||
@${CP} ${WRKSRC}/contrib/licq.* ${WRKSRC}/contrib/viewurl* \
|
||||
${PREFIX}/share/licq
|
||||
@chmod 555 ${PREFIX}/share/licq/*
|
||||
@chown bin.bin ${PREFIX}/share/licq/*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (licq-0.44.tar.gz) = d98f04a8e788516f4f2d7fe467880577
|
||||
MD5 (licq-0.61.tar.gz) = 5abfb71ab1dcd45ca6f349d5e0dd26a1
|
||||
|
|
|
@ -1,29 +1,22 @@
|
|||
--- misc/Makefile.in.orig Fri Oct 30 13:29:28 1998
|
||||
+++ misc/Makefile.in Sun Nov 1 21:22:45 1998
|
||||
@@ -17,6 +17,7 @@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
+INSTALL_SCRIPT = ${INSTALL} -c -o bin -g bin -m 555
|
||||
|
||||
CONF_FILES = sample.uin users.conf licq.conf
|
||||
|
||||
@@ -31,9 +32,9 @@
|
||||
$(RM) Makefile
|
||||
|
||||
install:
|
||||
- ${INSTALL_PROGRAM} licq.javaconvert ${bindir}
|
||||
- ${INSTALL_PROGRAM} licq.micqconvert ${bindir}
|
||||
- ${INSTALL_PROGRAM} licq.winconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.javaconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.micqconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.winconvert ${bindir}
|
||||
${INSTALL} -d ${pkgdatadir}/data
|
||||
${INSTALL} -d ${pkgdatadir}/conf
|
||||
${INSTALL} -d ${pkgdatadir}/translations
|
||||
@@ -46,4 +47,5 @@
|
||||
for i in translations/*; do \
|
||||
${INSTALL_DATA} $$i ${pkgdatadir}/translations; \
|
||||
done
|
||||
+ ${INSTALL} licq.1 ${prefix}/man/man1
|
||||
--- src/messagebox.cpp.old Tue Mar 9 15:42:14 1999
|
||||
+++ src/messagebox.cpp Tue Mar 9 15:42:55 1999
|
||||
@@ -67,7 +67,7 @@
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(),
|
||||
normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
setPalette(QPalette(newNormal, pal.disabled(), newNormal));
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||
|
||||
}
|
||||
--- src/searchuserdlg.cpp.old Tue Mar 9 15:42:23 1999
|
||||
+++ src/searchuserdlg.cpp Tue Mar 9 15:42:48 1999
|
||||
@@ -115,7 +115,7 @@
|
||||
QColorGroup normal(pal.normal());
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(), normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
foundView->setPalette(QPalette(newNormal, pal.disabled(), newNormal));*/
|
||||
- foundView->setStyle(WindowsStyle);
|
||||
+ foundView->setStyle(MotifStyle);
|
||||
foundView->setFrameStyle(QFrame::Box | QFrame::Raised);
|
||||
|
||||
connect (btnDone, SIGNAL(clicked()), this, SLOT(accept()));
|
||||
|
|
|
@ -1,11 +1,22 @@
|
|||
--- src/adduserdlg.cpp Fri Oct 30 14:29:03 1998
|
||||
+++ src/adduserdlg.cpp Fri Oct 30 19:23:23 1998
|
||||
@@ -13,7 +13,7 @@
|
||||
edtUin->setGeometry(100, 15, 120, 20);
|
||||
edtUin->setValidator(new QIntValidator(0, 2147483647, edtUin));
|
||||
chkAlert = new QCheckBox("Alert User", this);
|
||||
- chkAlert->setStyle(WindowsStyle);
|
||||
+ chkAlert->setStyle(MotifStyle);
|
||||
chkAlert->setGeometry(10, 50, 80, 20);
|
||||
chkAlert->setEnabled(false); //for now
|
||||
btnOk = new QPushButton("Ok", this);
|
||||
--- acconfig.h.old Wed Mar 10 10:05:47 1999
|
||||
+++ acconfig.h Wed Mar 10 10:06:26 1999
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
/* Change this to MotifStyle if you want the old-school Motif
|
||||
widget look. */
|
||||
-#define STYLE WindowsStyle
|
||||
+#define STYLE MotifStyle
|
||||
|
||||
/* The name of the package we're compiling */
|
||||
#undef PACKAGE
|
||||
--- config.h.in.old Wed Mar 10 10:05:53 1999
|
||||
+++ config.h.in Wed Mar 10 10:06:17 1999
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
/* Change this to MotifStyle if you want the old-school Motif
|
||||
widget look. */
|
||||
-#define STYLE WindowsStyle
|
||||
+#define STYLE MotifStyle
|
||||
|
||||
/* The name of the package we're compiling */
|
||||
#undef PACKAGE
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- src/licq.cpp Fri Oct 30 14:29:03 1998
|
||||
+++ src/licq.cpp Fri Oct 30 19:23:35 1998
|
||||
@@ -67,7 +67,7 @@
|
||||
cout << "Done installation, continuing load." << endl << endl;
|
||||
}
|
||||
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
// create the main widgets
|
||||
if (DEBUG_LEVEL >= 1) cout << "\n=> Setting up Licq daemon." << endl;
|
||||
icq = new ICQ;
|
|
@ -1,11 +0,0 @@
|
|||
--- src/messagebox.cpp Fri Oct 30 14:29:24 1998
|
||||
+++ src/messagebox.cpp Fri Oct 30 19:23:42 1998
|
||||
@@ -56,7 +56,7 @@
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(),
|
||||
normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
setPalette(QPalette(newNormal, pal.disabled(), newNormal));
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
--- src/searchuserdlg.cpp Fri Oct 30 14:29:22 1998
|
||||
+++ src/searchuserdlg.cpp Fri Oct 30 19:23:46 1998
|
||||
@@ -109,7 +109,7 @@
|
||||
QColorGroup normal(pal.normal());
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(), normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
foundView->setPalette(QPalette(newNormal, pal.disabled(), newNormal));*/
|
||||
- foundView->setStyle(WindowsStyle);
|
||||
+ foundView->setStyle(MotifStyle);
|
||||
foundView->setFrameStyle(QFrame::Box | QFrame::Raised);
|
||||
|
||||
connect (btnCancelSearch, SIGNAL(clicked()), this, SLOT(reject()));
|
|
@ -1,60 +1,9 @@
|
|||
bin/licq
|
||||
bin/licq.javaconvert
|
||||
bin/licq.micqconvert
|
||||
bin/licq.winconvert
|
||||
share/Licq/conf/licq.conf
|
||||
share/Licq/conf/sample.uin
|
||||
share/Licq/conf/users.conf
|
||||
share/Licq/data/away.ppm
|
||||
share/Licq/data/bg.ppm
|
||||
share/Licq/data/chat.wav
|
||||
share/Licq/data/dnd.ppm
|
||||
share/Licq/data/file.wav
|
||||
share/Licq/data/message-orig.wav
|
||||
share/Licq/data/message.ppm
|
||||
share/Licq/data/message.wav
|
||||
share/Licq/data/na.ppm
|
||||
share/Licq/data/notify.wav
|
||||
share/Licq/data/occupied.ppm
|
||||
share/Licq/data/offline.ppm
|
||||
share/Licq/data/online.ppm
|
||||
share/Licq/data/private.ppm
|
||||
share/Licq/data/status-icq.tar.gz
|
||||
share/Licq/data/url.wav
|
||||
share/Licq/translations/ASCII
|
||||
share/Licq/translations/CP437
|
||||
share/Licq/translations/CP850
|
||||
share/Licq/translations/DANISH
|
||||
share/Licq/translations/DEC_MCS
|
||||
share/Licq/translations/DG_MCS
|
||||
share/Licq/translations/DUTCH
|
||||
share/Licq/translations/FINNISH
|
||||
share/Licq/translations/FRENCH
|
||||
share/Licq/translations/FRENCH_CANADIAN
|
||||
share/Licq/translations/GERMAN
|
||||
share/Licq/translations/HP_MCS
|
||||
share/Licq/translations/IRV
|
||||
share/Licq/translations/ITALIAN
|
||||
share/Licq/translations/JIS
|
||||
share/Licq/translations/MACINTOSH
|
||||
share/Licq/translations/NEXT
|
||||
share/Licq/translations/NORWEGIAN_1
|
||||
share/Licq/translations/NORWEGIAN_2
|
||||
share/Licq/translations/POLISH
|
||||
share/Licq/translations/POLISH_NOPL
|
||||
share/Licq/translations/PORTUGUESE
|
||||
share/Licq/translations/PORTUGUESE_COM
|
||||
share/Licq/translations/RUSSIAN
|
||||
share/Licq/translations/RUSSIAN_ALT
|
||||
share/Licq/translations/RUSSIAN_WIN
|
||||
share/Licq/translations/SPANISH
|
||||
share/Licq/translations/SWEDISH
|
||||
share/Licq/translations/SWEDISH_NAMES
|
||||
share/Licq/translations/SWEDISH_NAMES_COM
|
||||
share/Licq/translations/SWISS
|
||||
share/Licq/translations/UNITED_KINGDOM
|
||||
share/Licq/translations/UNITED_KINGDOM_COM
|
||||
@dirrm share/Licq/conf
|
||||
@dirrm share/Licq/data
|
||||
@dirrm share/Licq/translations
|
||||
@dirrm share/Licq
|
||||
share/licq-base.tar.gz
|
||||
share/licq/licq.javaconvert
|
||||
share/licq/licq.micqconvert
|
||||
share/licq/licq.winconvert
|
||||
share/licq/viewurl-lynx.sh
|
||||
share/licq/viewurl-ncftp.sh
|
||||
share/licq/viewurl-netscape.sh
|
||||
@dirrm share/licq
|
||||
|
|
|
@ -3,24 +3,31 @@
|
|||
# Date created: 2 July 1998
|
||||
# Whom: Brian Feldman
|
||||
#
|
||||
# $Id: Makefile,v 1.4 1998/08/12 06:29:32 asami Exp $
|
||||
# $Id: Makefile,v 1.5 1998/11/02 04:04:40 steve Exp $
|
||||
#
|
||||
|
||||
DISTNAME= licq-0.44
|
||||
DISTNAME= licq-0.61
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://pages.infinit.net/fairoff/licq/
|
||||
MASTER_SITES= ftp://ftp.wibble.net/pub/licq/srcs/ \
|
||||
ftp://licq.darkorb.net/srcs/ \
|
||||
ftp://ftp.fanfic.org/pub/licq/srcs/ \
|
||||
ftp://ftp.inter-i.uni-mainz.de/pub/licq/srcs/
|
||||
|
||||
MAINTAINER= green@unixhelp.org
|
||||
|
||||
FETCH_BEFORE_ARGS= -b
|
||||
|
||||
USE_QT= yes
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt --with-qt-libs=${X11BASE}/lib
|
||||
|
||||
MAN1= licq.1
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/share/licq
|
||||
@${CP} ${WRKSRC}/contrib/licq.* ${WRKSRC}/contrib/viewurl* \
|
||||
${PREFIX}/share/licq
|
||||
@chmod 555 ${PREFIX}/share/licq/*
|
||||
@chown bin.bin ${PREFIX}/share/licq/*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (licq-0.44.tar.gz) = d98f04a8e788516f4f2d7fe467880577
|
||||
MD5 (licq-0.61.tar.gz) = 5abfb71ab1dcd45ca6f349d5e0dd26a1
|
||||
|
|
|
@ -1,29 +1,22 @@
|
|||
--- misc/Makefile.in.orig Fri Oct 30 13:29:28 1998
|
||||
+++ misc/Makefile.in Sun Nov 1 21:22:45 1998
|
||||
@@ -17,6 +17,7 @@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
+INSTALL_SCRIPT = ${INSTALL} -c -o bin -g bin -m 555
|
||||
|
||||
CONF_FILES = sample.uin users.conf licq.conf
|
||||
|
||||
@@ -31,9 +32,9 @@
|
||||
$(RM) Makefile
|
||||
|
||||
install:
|
||||
- ${INSTALL_PROGRAM} licq.javaconvert ${bindir}
|
||||
- ${INSTALL_PROGRAM} licq.micqconvert ${bindir}
|
||||
- ${INSTALL_PROGRAM} licq.winconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.javaconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.micqconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.winconvert ${bindir}
|
||||
${INSTALL} -d ${pkgdatadir}/data
|
||||
${INSTALL} -d ${pkgdatadir}/conf
|
||||
${INSTALL} -d ${pkgdatadir}/translations
|
||||
@@ -46,4 +47,5 @@
|
||||
for i in translations/*; do \
|
||||
${INSTALL_DATA} $$i ${pkgdatadir}/translations; \
|
||||
done
|
||||
+ ${INSTALL} licq.1 ${prefix}/man/man1
|
||||
--- src/messagebox.cpp.old Tue Mar 9 15:42:14 1999
|
||||
+++ src/messagebox.cpp Tue Mar 9 15:42:55 1999
|
||||
@@ -67,7 +67,7 @@
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(),
|
||||
normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
setPalette(QPalette(newNormal, pal.disabled(), newNormal));
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||
|
||||
}
|
||||
--- src/searchuserdlg.cpp.old Tue Mar 9 15:42:23 1999
|
||||
+++ src/searchuserdlg.cpp Tue Mar 9 15:42:48 1999
|
||||
@@ -115,7 +115,7 @@
|
||||
QColorGroup normal(pal.normal());
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(), normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
foundView->setPalette(QPalette(newNormal, pal.disabled(), newNormal));*/
|
||||
- foundView->setStyle(WindowsStyle);
|
||||
+ foundView->setStyle(MotifStyle);
|
||||
foundView->setFrameStyle(QFrame::Box | QFrame::Raised);
|
||||
|
||||
connect (btnDone, SIGNAL(clicked()), this, SLOT(accept()));
|
||||
|
|
|
@ -1,11 +1,22 @@
|
|||
--- src/adduserdlg.cpp Fri Oct 30 14:29:03 1998
|
||||
+++ src/adduserdlg.cpp Fri Oct 30 19:23:23 1998
|
||||
@@ -13,7 +13,7 @@
|
||||
edtUin->setGeometry(100, 15, 120, 20);
|
||||
edtUin->setValidator(new QIntValidator(0, 2147483647, edtUin));
|
||||
chkAlert = new QCheckBox("Alert User", this);
|
||||
- chkAlert->setStyle(WindowsStyle);
|
||||
+ chkAlert->setStyle(MotifStyle);
|
||||
chkAlert->setGeometry(10, 50, 80, 20);
|
||||
chkAlert->setEnabled(false); //for now
|
||||
btnOk = new QPushButton("Ok", this);
|
||||
--- acconfig.h.old Wed Mar 10 10:05:47 1999
|
||||
+++ acconfig.h Wed Mar 10 10:06:26 1999
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
/* Change this to MotifStyle if you want the old-school Motif
|
||||
widget look. */
|
||||
-#define STYLE WindowsStyle
|
||||
+#define STYLE MotifStyle
|
||||
|
||||
/* The name of the package we're compiling */
|
||||
#undef PACKAGE
|
||||
--- config.h.in.old Wed Mar 10 10:05:53 1999
|
||||
+++ config.h.in Wed Mar 10 10:06:17 1999
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
/* Change this to MotifStyle if you want the old-school Motif
|
||||
widget look. */
|
||||
-#define STYLE WindowsStyle
|
||||
+#define STYLE MotifStyle
|
||||
|
||||
/* The name of the package we're compiling */
|
||||
#undef PACKAGE
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- src/licq.cpp Fri Oct 30 14:29:03 1998
|
||||
+++ src/licq.cpp Fri Oct 30 19:23:35 1998
|
||||
@@ -67,7 +67,7 @@
|
||||
cout << "Done installation, continuing load." << endl << endl;
|
||||
}
|
||||
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
// create the main widgets
|
||||
if (DEBUG_LEVEL >= 1) cout << "\n=> Setting up Licq daemon." << endl;
|
||||
icq = new ICQ;
|
|
@ -1,11 +0,0 @@
|
|||
--- src/messagebox.cpp Fri Oct 30 14:29:24 1998
|
||||
+++ src/messagebox.cpp Fri Oct 30 19:23:42 1998
|
||||
@@ -56,7 +56,7 @@
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(),
|
||||
normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
setPalette(QPalette(newNormal, pal.disabled(), newNormal));
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
--- src/searchuserdlg.cpp Fri Oct 30 14:29:22 1998
|
||||
+++ src/searchuserdlg.cpp Fri Oct 30 19:23:46 1998
|
||||
@@ -109,7 +109,7 @@
|
||||
QColorGroup normal(pal.normal());
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(), normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
foundView->setPalette(QPalette(newNormal, pal.disabled(), newNormal));*/
|
||||
- foundView->setStyle(WindowsStyle);
|
||||
+ foundView->setStyle(MotifStyle);
|
||||
foundView->setFrameStyle(QFrame::Box | QFrame::Raised);
|
||||
|
||||
connect (btnCancelSearch, SIGNAL(clicked()), this, SLOT(reject()));
|
|
@ -1,60 +1,9 @@
|
|||
bin/licq
|
||||
bin/licq.javaconvert
|
||||
bin/licq.micqconvert
|
||||
bin/licq.winconvert
|
||||
share/Licq/conf/licq.conf
|
||||
share/Licq/conf/sample.uin
|
||||
share/Licq/conf/users.conf
|
||||
share/Licq/data/away.ppm
|
||||
share/Licq/data/bg.ppm
|
||||
share/Licq/data/chat.wav
|
||||
share/Licq/data/dnd.ppm
|
||||
share/Licq/data/file.wav
|
||||
share/Licq/data/message-orig.wav
|
||||
share/Licq/data/message.ppm
|
||||
share/Licq/data/message.wav
|
||||
share/Licq/data/na.ppm
|
||||
share/Licq/data/notify.wav
|
||||
share/Licq/data/occupied.ppm
|
||||
share/Licq/data/offline.ppm
|
||||
share/Licq/data/online.ppm
|
||||
share/Licq/data/private.ppm
|
||||
share/Licq/data/status-icq.tar.gz
|
||||
share/Licq/data/url.wav
|
||||
share/Licq/translations/ASCII
|
||||
share/Licq/translations/CP437
|
||||
share/Licq/translations/CP850
|
||||
share/Licq/translations/DANISH
|
||||
share/Licq/translations/DEC_MCS
|
||||
share/Licq/translations/DG_MCS
|
||||
share/Licq/translations/DUTCH
|
||||
share/Licq/translations/FINNISH
|
||||
share/Licq/translations/FRENCH
|
||||
share/Licq/translations/FRENCH_CANADIAN
|
||||
share/Licq/translations/GERMAN
|
||||
share/Licq/translations/HP_MCS
|
||||
share/Licq/translations/IRV
|
||||
share/Licq/translations/ITALIAN
|
||||
share/Licq/translations/JIS
|
||||
share/Licq/translations/MACINTOSH
|
||||
share/Licq/translations/NEXT
|
||||
share/Licq/translations/NORWEGIAN_1
|
||||
share/Licq/translations/NORWEGIAN_2
|
||||
share/Licq/translations/POLISH
|
||||
share/Licq/translations/POLISH_NOPL
|
||||
share/Licq/translations/PORTUGUESE
|
||||
share/Licq/translations/PORTUGUESE_COM
|
||||
share/Licq/translations/RUSSIAN
|
||||
share/Licq/translations/RUSSIAN_ALT
|
||||
share/Licq/translations/RUSSIAN_WIN
|
||||
share/Licq/translations/SPANISH
|
||||
share/Licq/translations/SWEDISH
|
||||
share/Licq/translations/SWEDISH_NAMES
|
||||
share/Licq/translations/SWEDISH_NAMES_COM
|
||||
share/Licq/translations/SWISS
|
||||
share/Licq/translations/UNITED_KINGDOM
|
||||
share/Licq/translations/UNITED_KINGDOM_COM
|
||||
@dirrm share/Licq/conf
|
||||
@dirrm share/Licq/data
|
||||
@dirrm share/Licq/translations
|
||||
@dirrm share/Licq
|
||||
share/licq-base.tar.gz
|
||||
share/licq/licq.javaconvert
|
||||
share/licq/licq.micqconvert
|
||||
share/licq/licq.winconvert
|
||||
share/licq/viewurl-lynx.sh
|
||||
share/licq/viewurl-ncftp.sh
|
||||
share/licq/viewurl-netscape.sh
|
||||
@dirrm share/licq
|
||||
|
|
|
@ -3,24 +3,31 @@
|
|||
# Date created: 2 July 1998
|
||||
# Whom: Brian Feldman
|
||||
#
|
||||
# $Id: Makefile,v 1.4 1998/08/12 06:29:32 asami Exp $
|
||||
# $Id: Makefile,v 1.5 1998/11/02 04:04:40 steve Exp $
|
||||
#
|
||||
|
||||
DISTNAME= licq-0.44
|
||||
DISTNAME= licq-0.61
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://pages.infinit.net/fairoff/licq/
|
||||
MASTER_SITES= ftp://ftp.wibble.net/pub/licq/srcs/ \
|
||||
ftp://licq.darkorb.net/srcs/ \
|
||||
ftp://ftp.fanfic.org/pub/licq/srcs/ \
|
||||
ftp://ftp.inter-i.uni-mainz.de/pub/licq/srcs/
|
||||
|
||||
MAINTAINER= green@unixhelp.org
|
||||
|
||||
FETCH_BEFORE_ARGS= -b
|
||||
|
||||
USE_QT= yes
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt --with-qt-libs=${X11BASE}/lib
|
||||
|
||||
MAN1= licq.1
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/share/licq
|
||||
@${CP} ${WRKSRC}/contrib/licq.* ${WRKSRC}/contrib/viewurl* \
|
||||
${PREFIX}/share/licq
|
||||
@chmod 555 ${PREFIX}/share/licq/*
|
||||
@chown bin.bin ${PREFIX}/share/licq/*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (licq-0.44.tar.gz) = d98f04a8e788516f4f2d7fe467880577
|
||||
MD5 (licq-0.61.tar.gz) = 5abfb71ab1dcd45ca6f349d5e0dd26a1
|
||||
|
|
|
@ -1,29 +1,22 @@
|
|||
--- misc/Makefile.in.orig Fri Oct 30 13:29:28 1998
|
||||
+++ misc/Makefile.in Sun Nov 1 21:22:45 1998
|
||||
@@ -17,6 +17,7 @@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
+INSTALL_SCRIPT = ${INSTALL} -c -o bin -g bin -m 555
|
||||
|
||||
CONF_FILES = sample.uin users.conf licq.conf
|
||||
|
||||
@@ -31,9 +32,9 @@
|
||||
$(RM) Makefile
|
||||
|
||||
install:
|
||||
- ${INSTALL_PROGRAM} licq.javaconvert ${bindir}
|
||||
- ${INSTALL_PROGRAM} licq.micqconvert ${bindir}
|
||||
- ${INSTALL_PROGRAM} licq.winconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.javaconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.micqconvert ${bindir}
|
||||
+ ${INSTALL_SCRIPT} licq.winconvert ${bindir}
|
||||
${INSTALL} -d ${pkgdatadir}/data
|
||||
${INSTALL} -d ${pkgdatadir}/conf
|
||||
${INSTALL} -d ${pkgdatadir}/translations
|
||||
@@ -46,4 +47,5 @@
|
||||
for i in translations/*; do \
|
||||
${INSTALL_DATA} $$i ${pkgdatadir}/translations; \
|
||||
done
|
||||
+ ${INSTALL} licq.1 ${prefix}/man/man1
|
||||
--- src/messagebox.cpp.old Tue Mar 9 15:42:14 1999
|
||||
+++ src/messagebox.cpp Tue Mar 9 15:42:55 1999
|
||||
@@ -67,7 +67,7 @@
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(),
|
||||
normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
setPalette(QPalette(newNormal, pal.disabled(), newNormal));
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||
|
||||
}
|
||||
--- src/searchuserdlg.cpp.old Tue Mar 9 15:42:23 1999
|
||||
+++ src/searchuserdlg.cpp Tue Mar 9 15:42:48 1999
|
||||
@@ -115,7 +115,7 @@
|
||||
QColorGroup normal(pal.normal());
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(), normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
foundView->setPalette(QPalette(newNormal, pal.disabled(), newNormal));*/
|
||||
- foundView->setStyle(WindowsStyle);
|
||||
+ foundView->setStyle(MotifStyle);
|
||||
foundView->setFrameStyle(QFrame::Box | QFrame::Raised);
|
||||
|
||||
connect (btnDone, SIGNAL(clicked()), this, SLOT(accept()));
|
||||
|
|
|
@ -1,11 +1,22 @@
|
|||
--- src/adduserdlg.cpp Fri Oct 30 14:29:03 1998
|
||||
+++ src/adduserdlg.cpp Fri Oct 30 19:23:23 1998
|
||||
@@ -13,7 +13,7 @@
|
||||
edtUin->setGeometry(100, 15, 120, 20);
|
||||
edtUin->setValidator(new QIntValidator(0, 2147483647, edtUin));
|
||||
chkAlert = new QCheckBox("Alert User", this);
|
||||
- chkAlert->setStyle(WindowsStyle);
|
||||
+ chkAlert->setStyle(MotifStyle);
|
||||
chkAlert->setGeometry(10, 50, 80, 20);
|
||||
chkAlert->setEnabled(false); //for now
|
||||
btnOk = new QPushButton("Ok", this);
|
||||
--- acconfig.h.old Wed Mar 10 10:05:47 1999
|
||||
+++ acconfig.h Wed Mar 10 10:06:26 1999
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
/* Change this to MotifStyle if you want the old-school Motif
|
||||
widget look. */
|
||||
-#define STYLE WindowsStyle
|
||||
+#define STYLE MotifStyle
|
||||
|
||||
/* The name of the package we're compiling */
|
||||
#undef PACKAGE
|
||||
--- config.h.in.old Wed Mar 10 10:05:53 1999
|
||||
+++ config.h.in Wed Mar 10 10:06:17 1999
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
/* Change this to MotifStyle if you want the old-school Motif
|
||||
widget look. */
|
||||
-#define STYLE WindowsStyle
|
||||
+#define STYLE MotifStyle
|
||||
|
||||
/* The name of the package we're compiling */
|
||||
#undef PACKAGE
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- src/licq.cpp Fri Oct 30 14:29:03 1998
|
||||
+++ src/licq.cpp Fri Oct 30 19:23:35 1998
|
||||
@@ -67,7 +67,7 @@
|
||||
cout << "Done installation, continuing load." << endl << endl;
|
||||
}
|
||||
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
// create the main widgets
|
||||
if (DEBUG_LEVEL >= 1) cout << "\n=> Setting up Licq daemon." << endl;
|
||||
icq = new ICQ;
|
|
@ -1,11 +0,0 @@
|
|||
--- src/messagebox.cpp Fri Oct 30 14:29:24 1998
|
||||
+++ src/messagebox.cpp Fri Oct 30 19:23:42 1998
|
||||
@@ -56,7 +56,7 @@
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(),
|
||||
normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
setPalette(QPalette(newNormal, pal.disabled(), newNormal));
|
||||
- setStyle(WindowsStyle);
|
||||
+ setStyle(MotifStyle);
|
||||
setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
--- src/searchuserdlg.cpp Fri Oct 30 14:29:22 1998
|
||||
+++ src/searchuserdlg.cpp Fri Oct 30 19:23:46 1998
|
||||
@@ -109,7 +109,7 @@
|
||||
QColorGroup normal(pal.normal());
|
||||
QColorGroup newNormal(normal.foreground(), normal.background(), normal.light(), normal.dark(), normal.mid(), normal.text(), QColor(192, 192, 192));
|
||||
foundView->setPalette(QPalette(newNormal, pal.disabled(), newNormal));*/
|
||||
- foundView->setStyle(WindowsStyle);
|
||||
+ foundView->setStyle(MotifStyle);
|
||||
foundView->setFrameStyle(QFrame::Box | QFrame::Raised);
|
||||
|
||||
connect (btnCancelSearch, SIGNAL(clicked()), this, SLOT(reject()));
|
|
@ -1,60 +1,9 @@
|
|||
bin/licq
|
||||
bin/licq.javaconvert
|
||||
bin/licq.micqconvert
|
||||
bin/licq.winconvert
|
||||
share/Licq/conf/licq.conf
|
||||
share/Licq/conf/sample.uin
|
||||
share/Licq/conf/users.conf
|
||||
share/Licq/data/away.ppm
|
||||
share/Licq/data/bg.ppm
|
||||
share/Licq/data/chat.wav
|
||||
share/Licq/data/dnd.ppm
|
||||
share/Licq/data/file.wav
|
||||
share/Licq/data/message-orig.wav
|
||||
share/Licq/data/message.ppm
|
||||
share/Licq/data/message.wav
|
||||
share/Licq/data/na.ppm
|
||||
share/Licq/data/notify.wav
|
||||
share/Licq/data/occupied.ppm
|
||||
share/Licq/data/offline.ppm
|
||||
share/Licq/data/online.ppm
|
||||
share/Licq/data/private.ppm
|
||||
share/Licq/data/status-icq.tar.gz
|
||||
share/Licq/data/url.wav
|
||||
share/Licq/translations/ASCII
|
||||
share/Licq/translations/CP437
|
||||
share/Licq/translations/CP850
|
||||
share/Licq/translations/DANISH
|
||||
share/Licq/translations/DEC_MCS
|
||||
share/Licq/translations/DG_MCS
|
||||
share/Licq/translations/DUTCH
|
||||
share/Licq/translations/FINNISH
|
||||
share/Licq/translations/FRENCH
|
||||
share/Licq/translations/FRENCH_CANADIAN
|
||||
share/Licq/translations/GERMAN
|
||||
share/Licq/translations/HP_MCS
|
||||
share/Licq/translations/IRV
|
||||
share/Licq/translations/ITALIAN
|
||||
share/Licq/translations/JIS
|
||||
share/Licq/translations/MACINTOSH
|
||||
share/Licq/translations/NEXT
|
||||
share/Licq/translations/NORWEGIAN_1
|
||||
share/Licq/translations/NORWEGIAN_2
|
||||
share/Licq/translations/POLISH
|
||||
share/Licq/translations/POLISH_NOPL
|
||||
share/Licq/translations/PORTUGUESE
|
||||
share/Licq/translations/PORTUGUESE_COM
|
||||
share/Licq/translations/RUSSIAN
|
||||
share/Licq/translations/RUSSIAN_ALT
|
||||
share/Licq/translations/RUSSIAN_WIN
|
||||
share/Licq/translations/SPANISH
|
||||
share/Licq/translations/SWEDISH
|
||||
share/Licq/translations/SWEDISH_NAMES
|
||||
share/Licq/translations/SWEDISH_NAMES_COM
|
||||
share/Licq/translations/SWISS
|
||||
share/Licq/translations/UNITED_KINGDOM
|
||||
share/Licq/translations/UNITED_KINGDOM_COM
|
||||
@dirrm share/Licq/conf
|
||||
@dirrm share/Licq/data
|
||||
@dirrm share/Licq/translations
|
||||
@dirrm share/Licq
|
||||
share/licq-base.tar.gz
|
||||
share/licq/licq.javaconvert
|
||||
share/licq/licq.micqconvert
|
||||
share/licq/licq.winconvert
|
||||
share/licq/viewurl-lynx.sh
|
||||
share/licq/viewurl-ncftp.sh
|
||||
share/licq/viewurl-netscape.sh
|
||||
@dirrm share/licq
|
||||
|
|
Loading…
Add table
Reference in a new issue