1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

This is a snapshot of the development version of KVirc -

it might be unstable.

WWW: http://www.kvirc.net

Submitted by:	Armin Pirkovitsch <a.pirko@inode.at> (via irc)
Repocopy by:    marcus
This commit is contained in:
Martin Wilke 2007-02-06 19:20:34 +00:00
parent 48fe5964ce
commit 9569d7efc0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=184408
7 changed files with 718 additions and 164 deletions

View File

@ -60,6 +60,7 @@
SUBDIR += kmyirc
SUBDIR += konversation
SUBDIR += kvirc
SUBDIR += kvirc-irc
SUBDIR += kwirc
SUBDIR += lostirc
SUBDIR += miau

View File

@ -6,30 +6,31 @@
#
PORTNAME= kvirc
PORTVERSION= 3.2.0
PORTREVISION= 3
PORTVERSION= 3.2.6
CATEGORIES= irc kde
MASTER_SITES= ftp://ftp.kvirc.net/pub/%SUBDIR%/ \
ftp://ftp.kvirc.de/pub/%SUBDIR%/ \
ftp://mirror.dudcore.net/pub/%SUBDIR%/ \
ftp://ftp.kvirc.pragmaware.net/pub/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}/source
MASTER_SITES= ftp://ftp.kvirc.ru/pub/source/dev/
PKGNAMESUFFIX= -devel
MAINTAINER= mranner@inode.at
MAINTAINER= a.pirko@inode.at
COMMENT= IRC client for QT and KDE
USE_AUTOTOOLS= libtool:15
INSTALLS_SHLIB= yes
USE_LDCONFIG= yes
USE_GETTEXT= yes
INSTALLS_ICONS= yes
USE_BZIP2= yes
USE_KDELIBS_VER=3
USE_GMAKE= yes
CONFIGURE_TARGET=
CONFIGURE_ARGS+= --mandir=${PREFIX}/man
CONFIGURE_ENV= QTDIR="${X11BASE}"
PLIST_SUB= VER=${PORTVERSION}
PLIST_SUB= VER=${PORTVERSION}
CONFLICTS= kvirc-3.2.0*
MAN1= kvirc.1
BUILD_DEPENDS+= recode:${PORTSDIR}/converters/recode
OPTIONS= ARTS "Compile with arts support" on \
AUDIOFILE "Compile with libaudiofile support" on \
ESOUND "Compile with esound support" off \
@ -71,5 +72,6 @@ post-patch:
post-configure:
@${MV} ${WRKSRC}/data/protocols/irc.protocol ${WRKSRC}/data/protocols/kvirc.protocol
@${MV} ${WRKSRC}/data/protocols/irc6.protocol ${WRKSRC}/data/protocols/kvirc6.protocol
${LOCALBASE}/bin/recode -f ibmpc..latin1 `find ${WRKSRC} -name "*.cpp" -print`
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
MD5 (kvirc-3.2.0.tar.bz2) = e783827fda3832fc3fb50e7a41ed627d
SHA256 (kvirc-3.2.0.tar.bz2) = ef4ad991578230db6c0bb8e7335304eac23996fedae682761c8b08ba89552984
SIZE (kvirc-3.2.0.tar.bz2) = 3704445
MD5 (kvirc-3.2.6.tar.bz2) = 7f1b4ba47e7e9c05d2d0373166e60c98
SHA256 (kvirc-3.2.6.tar.bz2) = 40c49f70b827e2efee032cd96bf08467117fb3010f2f04c702743dd765f13499
SIZE (kvirc-3.2.6.tar.bz2) = 4749304

View File

@ -1,11 +1,11 @@
--- data/protocols/Makefile.in.bak Wed Feb 15 10:36:43 2006
+++ data/protocols/Makefile.in Fri Feb 25 21:34:49 2005
@@ -183,7 +183,7 @@
--- data/protocols/Makefile.in.orig Sun Jan 7 10:39:57 2007
+++ data/protocols/Makefile.in Sat Jan 27 18:22:24 2007
@@ -210,7 +210,7 @@
top_srcdir = @top_srcdir@
topdir = @topdir@
tmpdir = $(kdeservicesdir)
-tmp_DATA = irc.protocol irc6.protocol
+tmp_DATA = kvirc.protocol kvirc6.protocol
EXTRA_DIST = $(tmp_DATA)
subdir = data/protocols
all: all-am

View File

@ -1,6 +1,6 @@
--- configure.orig Sat Feb 26 03:35:31 2005
+++ configure Sat Mar 12 09:28:45 2005
@@ -19621,7 +19621,7 @@
--- configure.orig Sun Jan 7 10:39:57 2007
+++ configure Sat Jan 27 19:23:03 2007
@@ -20313,7 +20313,7 @@
# This can be used to rebuild libtool when needed
@ -9,16 +9,16 @@
# Always use our own libtool.
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
@@ -21745,7 +21745,7 @@
@@ -25997,7 +25997,7 @@
else
echo "$as_me:$LINENO: result: no..using lpthread" >&5
echo "${ECHO_T}no..using lpthread" >&6
{ echo "$as_me:$LINENO: result: no..using lpthread" >&5
echo "${ECHO_T}no..using lpthread" >&6; }
- SS_THREAD_LIBLINK="-lpthread"
+ SS_THREAD_LIBLINK="-pthread"
cat >>confdefs.h <<\_ACEOF
#define COMPILE_THREADS_USE_POSIX 1
@@ -23316,7 +23316,7 @@
@@ -27491,7 +27491,7 @@
# Set the X include and lib dir
SS_X_INCDIR="$x_includes"
SS_X_LIBDIR="$x_libraries"
@ -27,3 +27,12 @@
if test -z "$SS_X_INCDIR"; then
# Ops... X headers not found ?
@@ -30709,7 +30709,7 @@
fi
done
- SS_DIRTAG=`echo $VERSION | cut -d . -f 1,2`
+ SS_DIRTAG=`echo $VERSION | cut -d . -f 1,2,3`
cat >>confdefs.h <<_ACEOF

View File

@ -1,6 +1,6 @@
--- src/modules/notifier/notifierwindowtabs.cpp.orig Sun Apr 17 00:58:15 2005
+++ src/modules/notifier/notifierwindowtabs.cpp Sun Apr 17 00:58:36 2005
@@ -228,7 +228,7 @@
--- src/modules/notifier/notifierwindowtabs.cpp.orig Sun Jan 7 10:39:57 2007
+++ src/modules/notifier/notifierwindowtabs.cpp Sat Jan 27 18:24:16 2007
@@ -237,7 +237,7 @@
void KviNotifierWindowTabs::addMessage(KviWindow * pWnd, KviNotifierMessage * message)
{

File diff suppressed because it is too large Load Diff