blob: df3697b84c8bf7b19b4b5260122f93419b1b2a5c (
plain)
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
|
# New ports collection makefile for: gaim-ignorance
# Date created: 17 April 2005
# Whom: kevinb
#
# $FreeBSD$
#
PORTNAME= ignorance
PORTVERSION= 2.2
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= gaim-
MAINTAINER= kruptos@mlinux.org
COMMENT= Adds filtering capabilities to gaim
BUILD_DEPENDS= gaim:${PORTSDIR}/net-im/gaim
RUN_DEPENDS= gaim:${PORTSDIR}/net-im/gaim
USE_X_PREFIX= yes
USE_BZIP2= yes
USE_LIBTOOL_VER=15
USE_REINPLACE= yes
SUB_FILES= pkg-message
PORTDOCS= README
post-patch:
@${REINPLACE_CMD} -e 's|-g3||' ${WRKSRC}/configure
@${REINPLACE_CMD} -e "s/ignorance.conf/ignorance.conf.sample/g" ${WRKSRC}/Makefile.in
@${MV} ${WRKSRC}/ignorance.conf ${WRKSRC}/ignorance.conf.sample
post-install:
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/ignorance ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
if ${TEST} ! -f ${PREFIX}/etc/gaim/ignorance.conf; then \
${CP} ${PREFIX}/etc/gaim/ignorance.conf.sample ${PREFIX}/etc/gaim/ignorance.conf; \
fi
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|