blob: 20fdc626d5d1698754759ce1994de635aabe08d4 (
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
|
# Created by: Janos.Mohacsi@bsd.hu
# $FreeBSD$
PORTNAME= scmxx
PORTVERSION= 0.9.0
PORTREVISION= 2
CATEGORIES= comms
MASTER_SITES= SF
MAINTAINER= jmohacsi@bsd.hu
COMMENT= Data exchange utility for Siemens mobile phones
USE_BZIP2= yes
USE_GMAKE= yes
USE_ICONV= yes
USE_GETTEXT= yes
GNU_CONFIGURE= yes
CFLAGS+= -I${LOCALBASE}/include
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
MAN1= scmxx.1
MANLANG= "" ru de it
DOCS= README docs/*.txt
EXAMPLES= sms.txt vCalendar.vcs vCard.vcf
post-patch:
@${FIND} ${WRKSRC} -name 'Makefile*' | ${XARGS} \
${REINPLACE_CMD} -e "s|CFLAGS=|CFLAGS+=|g"
post-install:
@${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/examples && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|