blob: e93dc669a64c72ea03b2b91861555d5a868d052b (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: XChat fish
# Date created: Mon Jan 17 03:22:41 UTC 2005
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= fish
DISTVERSION= 0.97a
CATEGORIES= irc security
MASTER_SITES= http://fish.sekure.us/xchat/
PKGNAMEPREFIX= xchat-
DISTNAME= FiSH-xchat.v${DISTVERSION}-source
MAINTAINER= ports@FreeBSD.org
COMMENT= An encryption plugin for XChat
BUILD_DEPENDS= ${LOCALBASE}/lib/libmiracl.a:${PORTSDIR}/math/miracl
RUN_DEPENDS= xchat:${PORTSDIR}/irc/xchat2
USE_X_PREFIX= yes
USE_ZIP= yes
NO_WRKSUBDIR= ys
#
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
PLIST_FILES= \
lib/xchat/plugins/xfish.so
PORTDOCS= \
FiSH-xchat.txt \
FiSH-xchat_History.txt
post-patch:
# \r\n -> \n
@${FIND} ${WRKSRC} -type f -exec \
${REINPLACE_CMD} -E \
-e 's|
||' \
{} \;
# CC safeness
# CFLAGS safeness
@${REINPLACE_CMD} -E \
-e 's|gcc|${CC}|' \
-e 's|-O2|${CFLAGS}|' \
-e 's|-shared|-shared -fPIC -DPIC|' \
-e 's|miracl.a|${LOCALBASE}/lib/libmiracl.a|' \
${WRKSRC}/make*
do-build:
@cd ${WRKSRC} && ${SH} ./make_all
do-install:
# docs
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${doc} \
${DOCSDIR}
.endfor
.endif
# plugin
@${MKDIR} ${PREFIX}/lib/xchat/plugins
@${INSTALL_PROGRAM} ${WRKSRC}/xfish.so \
${PREFIX}/lib/xchat/plugins
.include <bsd.port.mk>
|