mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
PORTNAME= usbutils
|
|
PORTVERSION= 0.91
|
|
CATEGORIES= sysutils
|
|
#MASTER_SITES+= SF/linux-usb/${PORTNAME}
|
|
#MASTER_SITES+= http://pkgs.fedoraproject.org/repo/pkgs/usbutils/usbutils-0.86.tar.gz/34979f675d2bcb3e1b45012fa830a53f/
|
|
#MASTER_SITES+= http://ftp.be.debian.org/pub/linux/utils/usb/usbutils/
|
|
DISTVERSIONPREFIX= v
|
|
|
|
RUN_DEPENDS= usbhid-dump:system/usbhid-dump
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/usbids/usb.ids:system/usbids
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Utility for listing USB devices
|
|
|
|
GH_ACCOUNT= gregkh
|
|
USE_GITHUB= yes
|
|
|
|
|
|
USES= gmake autoreconf
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --datadir=${DATADIR} --enable-zlib
|
|
CONFIGURE_ENV+= LIBUSB_CFLAGS="-I/usr/include"
|
|
CONFIGURE_ENV+= LIBUSB_LIBS="-L/usr/lib -lusb"
|
|
CONFIGURE_ARGS+= --datadir=${LOCALBASE}/share/usbids
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -i '' -e 's|/bin/bash|/bin/sh|' \
|
|
${WRKSRC}/usb-devices
|
|
|
|
post-install:
|
|
# cd ${STAGEDIR}${PREFIX}/sbin && ${MV} update-usbids.sh update-usbids
|
|
|
|
.include <bsd.port.mk>
|
|
#EOF
|
|
|