1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/devel/libusb/Makefile
Alberto Villa 17ac968b26 - Fix Makefile.
bsd.port.pre.mk requires bsd.port.post.mk to be included!
2012-07-08 00:04:37 +00:00

52 lines
1.5 KiB
Makefile

# New ports collection makefile for: libusb
# Date created: 27 January 2001
# Whom: John Reynolds <johnjen@reynoldsnet.org>
#
# $FreeBSD$
#
PORTNAME= libusb
PORTVERSION= 0.1.12
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-0.1%20%28LEGACY%29/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Library giving userland programs access to USB devices
OPTIONS_DEFINE= SGML
SGML_DESC= Install developer guide from SGML
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 800069
IGNORE= has been already included into base system
.endif
.if ${PORT_OPTIONS:MSGML}
BUILD_DEPENDS+= ${LOCALBASE}/share/sgml/jade/catalog:${PORTSDIR}/textproc/jade \
${LOCALBASE}/share/sgml/docbook/dsssl/modular/catalog:${PORTSDIR}/textproc/dsssl-docbook-modular \
${LOCALBASE}/share/sgml/docbook/4.2/catalog:${PORTSDIR}/textproc/docbook-420
MAKE_ENV+= SGML_CATALOG_FILES=${LOCALBASE}/share/sgml/iso8879/catalog:${LOCALBASE}/share/sgml/docbook/4.2/catalog:${LOCALBASE}/share/sgml/docbook/dsssl/modular/catalog:${LOCALBASE}/share/sgml/jade/catalog
PLIST_SUB= SGML=""
.else
CONFIGURE_ARGS= --disable-build-docs
PLIST_SUB= SGML="@comment "
.endif
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
USE_AUTOTOOLS= libtool
post-patch:
@${REINPLACE_CMD} -e 's|{libdir}/pkgconfig|{prefix}/libdata/pkgconfig|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|<stdint.h>|<inttypes.h>|' ${WRKSRC}/descriptors.c
post-install:
.if ${PORT_OPTIONS:MSGML}
@${MKDIR} ${DOCSDIR}/html
@${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR}/html
.endif
.include <bsd.port.post.mk>