mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
94824c3175
When devel/swig13 is installed, building of devel/libhid fails, due to my overlooking of the swig detection bits in the ports configure script. However, swig is used to build the python site-package of the port, so I've bumped the portrevision and turned these bits on by default (the additional patch-Makefile.in hunk is to suppress a warning). PR: ports/116076 Submitted by: Nikos Ntarmos <ntarmos@ceid.upatras.gr>
32 lines
821 B
Makefile
32 lines
821 B
Makefile
# New ports collection makefile for: libhid
|
|
# Date created: 16 July 2007
|
|
# Whom: ntarmos@ceid.upatras.gr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libhid
|
|
PORTVERSION= 0.2.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://alioth.debian.org/frs/download.php/1958/
|
|
|
|
MAINTAINER= ntarmos@ceid.upatras.gr
|
|
COMMENT= A user-space HID access library written in C
|
|
|
|
MAN1= libhid-detach-device.1
|
|
MANCOMPRESSED= no
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= yes
|
|
|
|
LIB_DEPENDS+= usb-0.1.8:${PORTSDIR}/devel/libusb
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/xsltproc:${PORTSDIR}/textproc/libxslt \
|
|
${LOCALBASE}/share/xsl/docbook/html:${PORTSDIR}/textproc/docbook-xsl \
|
|
${LOCALBASE}/bin/swig1.3:${PORTSDIR}/devel/swig13
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man --without-doxygen
|
|
|
|
.include <bsd.port.mk>
|