pollution diff is in. lang/squeak/vm does not build but it's due to the recent audio changes games/xbattle: also fixes some conflicting implicit decl print/hplip: also fixes some conflicting implicit decl
34 lines
628 B
Makefile
34 lines
628 B
Makefile
# $OpenBSD: Makefile,v 1.26 2016/09/10 13:03:40 ajacoutot Exp $
|
|
|
|
COMMENT = library for USB device access from userspace
|
|
|
|
VERSION = 1.0.20
|
|
DISTNAME = libusb-${VERSION}
|
|
PKGNAME = libusb1-${VERSION}
|
|
REVISION = 0
|
|
|
|
SHARED_LIBS += usb-1.0 1.1 # 1.0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://www.libusb.info
|
|
|
|
MAINTAINER = Martin Pieuchot <mpi@openbsd.org>
|
|
|
|
# LGPL 2.1
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB = pthread
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=libusb/}
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.ifdef DEBUG
|
|
CONFIGURE_ARGS += --enable-debug-log \
|
|
--enable-examples-build
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|