fcbe5f3ae2
couple of fallouts. Note that these ports are only the ones that used to have a direct dependency on devel/libusb so there may be some other hidden ports that may break because of the switch. If that's the case, no need to start ranting all over but instead tell me which one(s) break. Thanks. Note: sysutils/nut hasn't been fixed yet but will be today.
30 lines
728 B
Makefile
30 lines
728 B
Makefile
# $OpenBSD: Makefile,v 1.3 2011/11/13 13:54:04 ajacoutot Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = garmin gps device driver
|
|
|
|
REVISION = 1
|
|
DISTNAME = garmindev-0.3.4
|
|
CATEGORIES = geo x11
|
|
HOMEPAGE = http://www.qlandkarte.org/
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=qlandkartegt/}
|
|
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = devel/cmake
|
|
WANTLIB += m pthread stdc++ usb
|
|
LIB_DEPENDS += devel/libusb-compat
|
|
|
|
# libgarmindev is only needed to compile the drivers, but not on runtime
|
|
# see comment in src/IDevice.h
|
|
post-install:
|
|
rm ${PREFIX}/lib/qlandkartegt/libgarmin.a
|
|
|
|
.include <bsd.port.mk>
|