mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
642be1b81d
after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code)
33 lines
639 B
Makefile
33 lines
639 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= obexapp
|
|
PORTVERSION= 1.4.15
|
|
PORTREVISION= 1
|
|
CATEGORIES= comms net
|
|
MASTER_SITES= http://people.freebsd.org/~emax/obexapp/
|
|
|
|
MAINTAINER= madpilot@FreeBSD.org
|
|
COMMENT= Obex application to transfer objects to mobile equipment
|
|
|
|
LIB_DEPENDS= openobex:${PORTSDIR}/comms/openobex \
|
|
expat:${PORTSDIR}/textproc/expat2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USES= iconv
|
|
PLIST_FILES= bin/obexapp
|
|
|
|
.if !defined(NO_INSTALL_MANPAGES)
|
|
MAN1= obexapp.1
|
|
MANCOMPRESSED= yes
|
|
.else
|
|
MAKE_ENV+= NO_MAN=yes
|
|
.endif
|
|
|
|
MAKE_ENV+= NO_WERROR=yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|