Skip to content

Commit

Permalink
devel/linux_libusb: Flavorize with c7 and rl9 flavors
Browse files Browse the repository at this point in the history
Sponsored by:	Serenity Cybersecurity, LLC
  • Loading branch information
fluffykhv authored and arrowd committed May 12, 2024
1 parent 40b2d38 commit d43f7e3
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions devel/linux_libusb/Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
PORTNAME= linux_libusb
PORTVERSION= 13.1.0
CATEGORIES= devel linux
PKGNAMESUFFIX= -${FLAVOR}

MAINTAINER= ports@FreeBSD.org
COMMENT= Linux-compatibility LibUSB
WWW= https://github.com/hselasky/linux_libusb

LICENSE= BSD2CLAUSE

ONLY_FOR_ARCHS= aarch64 amd64 i386
ONLY_FOR_ARCHS= aarch64 amd64

USES= linux tar:bzip2
FLAVORS= c7 rl9
FLAVOR?= c7
c7_CONFLICTS_INSTALL= ${PORTNAME}-rl9
rl9_CONFLICTS_INSTALL= ${PORTNAME}-c7

USES= linux:${FLAVOR} tar:bzip2

USE_GITHUB= yes
USE_LDCONFIG= yes
Expand Down Expand Up @@ -40,18 +46,21 @@ MAKE_ENV+= LDADD="-lrt"

MAKE_ARGS+= NO_WDATE_TIME=yes

.if ${ARCH} == amd64
.if ${FLAVOR} == c7
ONLY_FOR_ARCHS+= i386
. if ${ARCH} == amd64
PLIST_FILES+= usr/lib/libusb.so.3 \
usr/lib/libusb-0.1.so.4 \
usr/lib/libusb-1.0.so.0
. endif
.endif

do-build:
${MKDIR} ${WRKSRC}/${LIBDIR_${ARCH}}
cd ${WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} \
MAKEOBJDIR=${LIBDIR_${ARCH}} ${MAKE_CMD} ${MAKE_FLAGS} \
${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS:N${DESTDIRNAME}=*}
.if ${ARCH} == amd64
.if ${ARCH} == amd64 && ${FLAVOR} == c7
${MKDIR} ${WRKSRC}/lib
cd ${WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV:NCC=*} \
CC="${CC} -m32" MAKEOBJDIR=lib ${MAKE_CMD} ${MAKE_FLAGS} \
Expand All @@ -67,7 +76,7 @@ do-install:
${STAGEDIR}${PREFIX}/usr/${LIBDIR_${ARCH}}/libusb-0.1.so.4
${LN} -s libusb.so.3 \
${STAGEDIR}${PREFIX}/usr/${LIBDIR_${ARCH}}/libusb-1.0.so.0
.if ${ARCH} == amd64
.if ${ARCH} == amd64 && ${FLAVOR} == c7
${MKDIR} ${STAGEDIR}${PREFIX}/usr/lib
${INSTALL_LIB} ${WRKSRC}/lib/libusb.so.3 \
${STAGEDIR}${PREFIX}/usr/lib
Expand Down

0 comments on commit d43f7e3

Please sign in to comment.