aboutsummaryrefslogtreecommitdiff
path: root/irc/xchat-mircryption/Makefile
blob: c6f6525e679b1eb9cd6fbb65765425a49e3ce67d (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
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
# $FreeBSD$
#    $MCom: ports/irc/xchat-mircryption/Makefile,v 1.2 2006/10/10 20:22:11 mezz Exp $

PORTNAME=	mircryption
DISTVERSION=	0.3.3
PORTREVISION=	5
PORTEPOCH=	1
CATEGORIES=	irc security
MASTER_SITES=	http://mircryption.sourceforge.net/Downloads/
PKGNAMEPREFIX=	xchat-
DISTNAME=	mircryption_xchatsrc

MAINTAINER=	dinoex@FreeBSD.org
COMMENT=	Free encryption add-on for the popular XChat irc client

RUN_DEPENDS=	xchat:${PORTSDIR}/irc/xchat

USES=		zip dos2unix shebangfix
SHEBANG_FILES=	extras/mcps_masterkey_on_start.pl
ALL_TARGET=	freebsd
CFLAGS+=	-fPIC
USE_LDCONFIG=	yes

WRKSRC=		${WRKDIR}/src/xchat/
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR=	${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}

PLIST_FILES=	lib/xchat/plugins/mircryption.so

PORTDOCS=	README.txt
PORTEXAMPLES=	mcps_masterkey_on_start.pl

OPTIONS_DEFINE=	DOCS EXAMPLES

.include <bsd.port.options.mk>

post-patch:
	${REINPLACE_CMD} -E \
		-e 's|^(CFLAGS.+)"$$|\1 ${CFLAGS}"|' \
		-e 's|^(LDFLAGS.+)"$$|\1 ${LDFLAGS}"|' \
		-e 's|^(LOAD).*$$|LOAD=${CXX}|' \
		${WRKSRC}/${MAKEFILE}

do-install:
	${MKDIR} ${STAGEDIR}${PREFIX}/lib/xchat/plugins
	${INSTALL_PROGRAM} ${WRKSRC}/mircryption.so \
		${STAGEDIR}${PREFIX}/lib/xchat/plugins
.if ${PORT_OPTIONS:MDOCS}
	${MKDIR} ${STAGEDIR}${DOCSDIR}
	${INSTALL_DATA} ${WRKSRC}/README.txt \
		${STAGEDIR}${DOCSDIR}/
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
	${INSTALL_SCRIPT} \
		${WRKSRC}/extras/mcps_masterkey_on_start.pl \
		${STAGEDIR}${EXAMPLESDIR}/
.endif

.include <bsd.port.mk>