1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-03 11:12:13 +00:00

- Add some mirrors

- Add LICENSE_FILE
- Switch to options helpers
This commit is contained in:
Dmitry Marakasov 2015-08-25 14:58:40 +00:00
parent 8bec027e63
commit 4fb34afe91
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=395296

View File

@ -5,37 +5,35 @@ PORTNAME= usbutils
PORTVERSION= 0.86
PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= SF/linux-usb/${PORTNAME}
MASTER_SITES= SF/linux-usb/${PORTNAME} \
http://pkgs.fedoraproject.org/repo/pkgs/usbutils/usbutils-0.86.tar.gz/34979f675d2bcb3e1b45012fa830a53f/ \
http://ftp.be.debian.org/pub/linux/utils/usb/usbutils/
MAINTAINER= ports@FreeBSD.org
COMMENT= Utility for listing USB devices
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= gmake pkgconfig
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --datadir=${DATADIR} --enable-zlib
USES= gmake pkgconfig
CONFIGURE_ENV= LIBUSB_CFLAGS="-I/usr/include" \
LIBUSB_LIBS="-L/usr/lib -lusb"
PORTDOCS= AUTHORS ChangeLog NEWS README
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
CONFIGURE_ENV+= LIBUSB_CFLAGS="-I/usr/include" \
LIBUSB_LIBS="-L/usr/lib -lusb"
post-patch:
@${REINPLACE_CMD} -i '' \
-e 's|/bin/bash|/bin/sh|' \
${WRKSRC}/usb-devices
post-install:
.if ${PORT_OPTIONS:MDOCS}
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S@^@${WRKSRC}/@} ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>