mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
bbab7f59e9
- Remove all references to defunct ARCH arm - Remove all references to defunct ARCH sparc64 - Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64 ARCH - Remove sysutils/afbinit requires defunct sparc64 ARCH - Remove all references to bktr driver - Remove all references to defunct FreeBSD_12 - Remove all references to OSVERSION/OSREL corresponding to 12 - Remove conditionals in Mk/Uses/cabal.mk - Remove sparc reference from Mk/Uses/qt-dist.mk - Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64 - Remove BROKEN_FreeBSD_12* from: - Remove OpenSSL patches from: - Remove conditional flags for OSVERSION >= 1300000 to fixed flags. Also move conditional flags for non sparc64/arm ARCH to fixed flags. Reviewed by: brooks, jbeich, rene, salvadore Differential Revision: https://reviews.freebsd.org/D42068
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
PORTNAME= compat6x
|
|
PORTVERSION= 6.4.604000.200810
|
|
PORTREVISION= 3
|
|
CATEGORIES= misc
|
|
MASTER_SITES= LOCAL/mnag/compat6x \
|
|
http://people.freebsd.org/~mnag/compat6x/
|
|
PKGNAMESUFFIX= -${ARCH}
|
|
DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Convenience package to install the compat6x libraries
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
USES= tar:bzip2
|
|
NO_BUILD= yes
|
|
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 ${ARCH} == amd64
|
|
USE_LDCONFIG32= ${TARGET32_DIR}
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} -m 755 ${STAGEDIR}${TARGET_DIR}
|
|
${RM} ${WRKSRC}/lib/libpthread.so.2
|
|
(cd ${STAGEDIR}${TARGET_DIR} && ${LN} -sf libthr.so.2 libpthread.so.2)
|
|
(cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${STAGEDIR}${TARGET_DIR})
|
|
.if ${ARCH} == amd64
|
|
@${MKDIR} ${STAGEDIR}${TARGET32_DIR}
|
|
${RM} ${WRKSRC}/lib32/libpthread.so.2
|
|
(cd ${STAGEDIR}${TARGET32_DIR} && ${LN} -sf libthr.so.2 libpthread.so.2)
|
|
(cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${STAGEDIR}${TARGET32_DIR})
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|