aboutsummaryrefslogtreecommitdiffstats
path: root/devel/libusb/Makefile
blob: de25bc65a4611a08a2f5ae600f9408b783744a94 (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
40
41
42
43
44
45
46
47
48
49
50
# 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=    SGML "Install developer guide from SGML" off

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 800069
IGNORE=     has been already included into base system
.endif

.if defined(WITH_SGML)
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:22
USE_LDCONFIG=   yes
USE_AUTOTOOLS=  libtool:22

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 defined(WITH_SGML)
    @${MKDIR} ${DOCSDIR}/html
    @${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR}/html
.endif

.include <bsd.port.post.mk>