diff --git a/misc/compat12x/Makefile b/misc/compat12x/Makefile index 2c4942838f4c..a88d9b18de92 100644 --- a/misc/compat12x/Makefile +++ b/misc/compat12x/Makefile @@ -1,39 +1,39 @@ PORTNAME= compat12x PORTVERSION= 12.2.1202000.20210406 CATEGORIES= misc MASTER_SITES= LOCAL/jkim PKGNAMESUFFIX= -${ARCH} DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION} MAINTAINER= jkim@FreeBSD.org COMMENT= Convenience package to install the compat12x libraries LICENSE= BSD2CLAUSE USES= tar:xz NO_BUILD= yes ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc PLIST= ${PKGDIR}/pkg-plist.${ARCH} TARGET_DIR= ${PREFIX}/lib/compat TARGET32_DIR= ${PREFIX}/lib32/compat USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSREL:R} < 13 -IGNORE= is for FreeBSD 13.x and newer +.if ${OSREL:R} < 12 +IGNORE= is for FreeBSD 12.x and newer .endif .if ${ARCH} == amd64 USE_LDCONFIG32= ${TARGET32_DIR} .endif do-install: @${MKDIR} -m 0755 ${STAGEDIR}${TARGET_DIR} (cd ${WRKSRC}/lib && ${INSTALL_LIB} *.so.* ${STAGEDIR}${TARGET_DIR}) .if ${ARCH} == amd64 @${MKDIR} ${STAGEDIR}${TARGET32_DIR} (cd ${WRKSRC}/lib32 && ${INSTALL_LIB} *.so.* ${STAGEDIR}${TARGET32_DIR}) .endif .include