mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
40 lines
919 B
Makefile
40 lines
919 B
Makefile
# Created by: Clemens Zauner <czauner+ports@onlineloop.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wbxml2
|
|
PORTVERSION= 0.10.9
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= SF/libwbxml/libwbxml/${PORTVERSION}
|
|
DISTNAME= libwbxml-${PORTVERSION}
|
|
|
|
MAINTAINER= flo@FreeBSD.org
|
|
COMMENT= Library & tools for converting wbxml<->xml
|
|
|
|
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
|
|
|
|
WRKSRC= ${WRKDIR}/libwbxml-${PORTVERSION}
|
|
CONFIGURE_WRKSRC= ${WRKDIR}/libwbxml-${PORTVERSION}/build
|
|
BUILD_WRKSRC= ${CONFIGURE_WRKSRC}
|
|
INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}
|
|
|
|
USE_BZIP2= yes
|
|
USES= cmake iconv
|
|
CMAKE_SOURCE_PATH= ..
|
|
USE_LDCONFIG= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/libwbxml
|
|
|
|
NO_STAGE= yes
|
|
post-extract:
|
|
@${MKDIR} ${CONFIGURE_WRKSRC}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in AUTHORS BUGS ChangeLog NEWS README References THANKS TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|