Date: Sat, 19 Oct 2019 11:16:01 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514787 - head/misc/gplink Message-ID: <201910191116.x9JBG1Na001831@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sat Oct 19 11:16:00 2019 New Revision: 514787 URL: https://svnweb.freebsd.org/changeset/ports/514787 Log: misc/gplink: Drop no longer useful USB_CFLAGS, USB_LDFLAGS It was useful when we still had devel/libusb but is now just noise. - Respect LDFLAGS - Use WRKSRC_SUBDIR Modified: head/misc/gplink/Makefile Modified: head/misc/gplink/Makefile ============================================================================== --- head/misc/gplink/Makefile Sat Oct 19 11:08:29 2019 (r514786) +++ head/misc/gplink/Makefile Sat Oct 19 11:16:00 2019 (r514787) @@ -3,6 +3,7 @@ PORTNAME= gplink PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://gp2x.org/gp32/gplink/ \ http://www.gnu-darwin.org/distfiles/ @@ -13,17 +14,14 @@ COMMENT= GP32 USB linker tool LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -WRKSRC= ${WRKDIR}/${DISTNAME}/src - USES= gmake MAKE_ARGS= CC="${CC}" \ - CFLAGS="${CFLAGS} ${USB_CFLAGS}" \ - LDFLAGS="${USB_LDFLAGS}" + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" +LDFLAGS+= -lusb +WRKSRC_SUBDIR= src PLIST_FILES= bin/gplink - -USB_CFLAGS= # none -USB_LDFLAGS= -lusb do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gplink ${STAGEDIR}${PREFIX}/bin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910191116.x9JBG1Na001831>