a2b8da229b
SCMxx is a data exchange utility for certain Siemens mobile phone models. Data types handled include logo bitmaps, MIDI files, vCalendars, address books, phonebook entries and SMS. Support for phones includes the S25, C35i, S35i, M35i, C45, S45, ME45 and SL45 models. Based on port from NetBSD. Help and ok from naddy@, 10x!
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/08/21 19:11:37 grange Exp $
|
|
# $NetBSD: Makefile,v 1.18 2002/10/22 15:33:10 kleink Exp $
|
|
|
|
COMMENT= data exchange utility for Siemens mobile phones
|
|
|
|
DISTNAME= scmxx-0.6.3.8
|
|
CATEGORIES= comms
|
|
HOMEPAGE= http://www.hendrik-sattler.de/scmxx/
|
|
|
|
MAINTAINER= Alexander Yurchenko <grange@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES=http://ma2geo.mathematik.uni-karlsruhe.de/~hendrik/scmxx/download/
|
|
|
|
MODULES= iconv
|
|
|
|
MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include -DNO_NL_LANGINFO" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/docs/doc_sources.txt \
|
|
${PREFIX}/share/doc/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/docs/gsm0338.txt \
|
|
${PREFIX}/share/doc/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/docs/gsmcharset.txt \
|
|
${PREFIX}/share/doc/scmxx
|
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/examples/phonebook \
|
|
${PREFIX}/share/examples/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/examples/sms.txt \
|
|
${PREFIX}/share/examples/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/examples/vCalendar.vcs \
|
|
${PREFIX}/share/examples/scmxx
|
|
${INSTALL_DATA} ${WRKSRC}/examples/vCard.vcf \
|
|
${PREFIX}/share/examples/scmxx
|
|
|
|
.include <bsd.port.mk>
|