View | Details | Raw Unified | Return to bug 75052
Collapse All | Expand All

(-)qterm/Makefile (-10 / +7 lines)
Lines 6-16 Link Here
6
#
6
#
7
7
8
PORTNAME=	qterm
8
PORTNAME=	qterm
9
PORTVERSION=	0.4.0.p1
9
PORTVERSION=	0.4.0.p2
10
CATEGORIES=	chinese
10
CATEGORIES=	chinese
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
13
DISTNAME=	${PORTNAME}-0.4.0pre1
13
DISTNAME=	${PORTNAME}-0.4.0pre2
14
14
15
MAINTAINER=	gavin@FreeBSDChina.org
15
MAINTAINER=	gavin@FreeBSDChina.org
16
COMMENT=	QTerm is a BBS client in Unix
16
COMMENT=	QTerm is a BBS client in Unix
Lines 22-37 Link Here
22
		--x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include
22
		--x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include
23
23
24
.if !defined(WITHOUT_PYTHON)
24
.if !defined(WITHOUT_PYTHON)
25
USE_PYTHON=	-2.3
25
USE_PYTHON=	2.3+
26
CONFIGURE_ARGS+=	--with-pythondir=${LOCALBASE}
26
CONFIGURE_ARGS+=	--with-pythondir=${LOCALBASE}
27
.endif
27
.endif
28
28
29
.include <bsd.port.pre.mk>
30
31
.if ${OSVERSION} >= 600000 && ${ARCH} != "i386"
32
BROKEN=		"Does not compile on FreeBSD >= 6.x on !i386"
33
.endif
34
35
pre-everything::
29
pre-everything::
36
.if !defined(WITHOUT_PYTHON)
30
.if !defined(WITHOUT_PYTHON)
37
	@${ECHO_MSG} "Define WITHOUT_PYTHON to disable Python scripts support."
31
	@${ECHO_MSG} "Define WITHOUT_PYTHON to disable Python scripts support."
Lines 41-44 Link Here
41
	@${REINPLACE_CMD} -e 's,-lssl,-lssl -lcrypto,' \
35
	@${REINPLACE_CMD} -e 's,-lssl,-lssl -lcrypto,' \
42
		${WRKSRC}/configure
36
		${WRKSRC}/configure
43
37
44
.include <bsd.port.post.mk>
38
post-install:
39
	@${CAT} ${PKGMESSAGE}
40
41
.include <bsd.port.mk>
(-)qterm/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (qterm-0.4.0pre1.tar.gz) = dbd80ec692e4603f7775ffbdb1d52bff
1
MD5 (qterm-0.4.0pre2.tar.gz) = 379a5932ee282bedcfa70d3f16e3e91e
2
SIZE (qterm-0.4.0pre1.tar.gz) = 1077778
2
SIZE (qterm-0.4.0pre2.tar.gz) = 895907
(-)qterm/files/patch-qterm_qtermiplocation.cpp (+18 lines)
Line 0 Link Here
1
--- qterm/qtermiplocation.cpp.orig	Tue Dec 14 18:45:37 2004
2
+++ qterm/qtermiplocation.cpp	Tue Dec 14 18:46:21 2004
3
@@ -79,13 +79,13 @@
4
 	if( fseek( fp, (long)offset, SEEK_SET ) ==-1 )
5
 	{
6
 		qDebug( " readLineFrom error 1 " );
7
-		ret_str = QCString(NULL);
8
+		ret_str = QCString();
9
 		return -1;
10
 	}
11
 	if( fgets( (char *) str, 512, fp ) == NULL )
12
 	{
13
 		qDebug( " readLineFrom error 2 " );
14
-		ret_str = QCString(NULL);
15
+		ret_str = QCString();
16
 		return -1;
17
 	}
18
 	ret_str = str;
(-)qterm/pkg-message (+6 lines)
Line 0 Link Here
1
*************************************************************************
2
	You can't modify the SITE definition until setting
3
QTerm's config file privilege in your ~/.qterm directory to 0644 at least
4
		To display IP location when using QTerm
5
you must get file "QQWry.dat" and put it into your ~/.qterm directory
6
*************************************************************************

Return to bug 75052