blob: 479ffc787958c93695d1fa42b156310859d7c0f3 (
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: retranslator
# Date created: 2010-05-25
# Whom: Gvozdikov Veniamin <g.veniamin@googlemail.com>
#
# $FreeBSD$
#
PORTNAME= retranslator
PORTVERSION= 5.0.0
CATEGORIES= security
MASTER_SITES= http://utils.kaspersky.com/updater/retranslator_5.0.0.7/FreeBSD_6.3/ \
http://fbsd.zlonet.ru/distfiles/
DISTNAME= ${PORTNAME}-${PORTVERSION}-7
MAINTAINER= vg@FreeBSD.org
COMMENT= The update utility for Kaspersky applications
NO_BUILD= yes
ONLY_FOR_ARCHS= i386 amd64
WRKSRC= ${WRKDIR}/${PORTNAME}
LIB_DEPENDS+= m.4:${PORTSDIR}/misc/compat6x
do-configure:
.for f in 's,./backup/,/var/db/${PORTNAME}/backup,g' \
's,./bases/,/var/db/${PORTNAME}/bases,g' \
's,./${PORTNAME}.log,/var/log/${PORTNAME}.log,g'
@${REINPLACE_CMD} -e ${f} \
${WRKSRC}/${PORTNAME}.conf
.endfor
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.bin \
${PREFIX}/bin/${PORTNAME}
post-install:
@${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf \
${PREFIX}/etc/${PORTNAME}.conf.sample
@if [ ! -f ${PREFIX}/etc/${PORTNAME}.conf ]; then \
${CP} -p ${PREFIX}/etc/${PORTNAME}.conf.sample ${PREFIX}/etc/${PORTNAME}.conf ; \
fi
.include <bsd.port.mk>
|