blob: 6f680a2822be13db115a72ed0ea4f2fb3417698b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# New ports collection makefile for: qterm
# Date created: 10 Mar 2001
# Whom: Shen Chuan-Hsing
#
# $FreeBSD$
#
PORTNAME= qterm
PORTVERSION= 0.4.0.p1
CATEGORIES= chinese
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-0.4.0pre1
MAINTAINER= gavin@FreeBSDChina.org
COMMENT= QTerm is a BBS client in Unix
USE_QT_VER= 3
HAS_CONFIGURE= yes
USE_REINPLACE= yes
CONFIGURE_ARGS= --enable-mt --prefix=${PREFIX}
.if !defined(WITHOUT_PYTHON)
USE_PYTHON= -2.3
CONFIGURE_ARGS+= --with-pythondir=${LOCALBASE}
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 600000 && ${ARCH} != "i386"
BROKEN= "Does not compile on FreeBSD >= 6.x on !i386"
.endif
pre-everything::
.if !defined(WITHOUT_PYTHON)
@${ECHO_MSG} "Define WITHOUT_PYTHON to disable Python scripts support."
.endif
post-patch:
@${REINPLACE_CMD} -e 's,-lssl,-lssl -lcrypto,' \
${WRKSRC}/configure
.include <bsd.port.post.mk>
|