blob: 5c112a18d7156857ff569065c45d35e2c2e511c9 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# New ports collection makefile for: gnokii
# Date created: 15 March 1999
# Whom: staffanu
#
# $FreeBSD$
#
PORTNAME= gnokii
PORTVERSION= 0.3.3
PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= comms
MASTER_SITES= ftp://ftp.gnokii.org/pub/gnokii/ \
ftp://urtica.linuxnews.pl/pub/people/pkot/gnokii/
MAINTAINER= anders@FreeBSD.org
LIB_DEPENDS= intl.2:${PORTSDIR}/devel/gettext
USE_GMAKE= yes
USE_AUTOCONF= yes
.if !defined(WITHOUT_X11)
USE_XPM= yes
USE_GTK= yes
.endif
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-libintl=${LOCALBASE} --enable-security \
--with-xgnokiidir=${PREFIX}/share
.if defined(WITHOUT_X11)
CONFIGURE_ARGS+= --without-x
PLIST_SUB+= X11='@comment '
.else
PLIST_SUB+= X11=''
.endif
NO_PACKAGE= "Group needs to be created"
MAN1= gnokii.1 todologo.1
.if !defined(WITHOUT_X11)
MAN1+= xgnokii.1
.endif
MAN8= gnokiid.8 mgnokiidev.8
INSTALL_TARGET= install-suid
FIXPREFIX= common/cfgreader.c ChangeLog Docs/man/gnokiid.8 \
Docs/DataCalls-QuickStart Docs/README po/et.po po/pl.po
post-patch:
.for f in ${FIXPREFIX}
${PERL} -pi -e "s@/etc/gnokiirc@${PREFIX}/etc/gnokiirc@g" \
${WRKSRC}/${f}
.endfor
pre-install:
@${SH} ${SCRIPTDIR}/creategroup
post-install:
@(cd ${WRKSRC} && ${GMAKE} install-docs)
${INSTALL_DATA} ${WRKSRC}/Docs/sample/gnokiirc \
${PREFIX}/etc/gnokiirc.sample
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|