1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/misc/compat12x/Makefile
Mikael Urankar 1094a425e0 misc/compat12x: add compat distfiles for arm*
Approved by:	bapt (maintainer), manu (mentor, implicit)
Differential Revision:	https://reviews.freebsd.org/D24024
2020-03-12 17:26:33 +00:00

42 lines
956 B
Makefile

# $FreeBSD$
PORTNAME= compat12x
PORTVERSION= 12.1.1201000.20200220
CATEGORIES= misc
MASTER_SITES= LOCAL/bapt
PKGNAMESUFFIX= -${ARCH}
DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION}
MAINTAINER= bapt@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
PLIST= ${PKGDIR}/pkg-plist.${ARCH}
TARGET_DIR= ${PREFIX}/lib/compat
TARGET32_DIR= ${PREFIX}/lib32/compat
USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
.if ${OSREL:R} < 13
IGNORE= is for FreeBSD 13.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 <bsd.port.post.mk>