blob: 56dde3016b63f67cbca93beef6314cb8a560a80b (
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
44
45
|
# New ports collection makefile for: zh-BBMan
# Date created: 24 July 2004
# Whom: Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw>
#
# $FreeBSD$
#
PORTNAME= BBMan
PORTVERSION= 1.7.7.5
PORTREVISION= 1
CATEGORIES= chinese net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME:L}
DISTNAME= ${PORTNAME}-src-v${PORTVERSION:S,.,-,g}
EXTRACT_SUFX= .zip
MAINTAINER= ports@FreeBSD.org
COMMENT= BBMan is a BBS client for X Window System
LIB_DEPENDS= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2
USE_ZIP= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_X_PREFIX= yes
USE_GCC= 3.3
PLIST_FULES= bin/BBMan
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
BROKEN= "Does not link on FreeBSD 4.x"
.endif
.if ${ARCH} == ia64
BROKEN= "Hard-codes reference to libc_r"
.endif
do-build:
cd ${WRKSRC} && ${CXX} main.cpp `wxgtk2-2.4-config --libs --cxxflags` -I${LOCALBASE}/include ${CFLAGS} -o BBMan
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/BBMan ${PREFIX}/bin/BBMan
.include <bsd.port.post.mk>
|