mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= compat8x
|
|
PORTVERSION= 8.4.804000.201310
|
|
PORTREVISION= 2
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= garga/compat
|
|
PKGNAMESUFFIX= -${ARCH}
|
|
DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Convenience package to install the compat8x libraries
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= tar:xz
|
|
NO_BUILD= yes
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
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 ${OSVERSION} < 800000
|
|
IGNORE= is for FreeBSD 8.x and newer
|
|
.endif
|
|
|
|
# libstdc++.so.6 could be necessary to run an 8.x binary
|
|
.if ${OSVERSION} >= 1000054
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/compat/libstdc++.so.6:${PORTSDIR}/misc/compat9x
|
|
.endif
|
|
|
|
.if ${ARCH} == amd64
|
|
PLIST_SUB+= LDCONFIG_LIB32="${LDCONFIG} -32"
|
|
USE_LDCONFIG32= ${TARGET32_DIR}
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} -m 0755 ${STAGEDIR}${TARGET_DIR}
|
|
(cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${STAGEDIR}${TARGET_DIR})
|
|
.if ${ARCH} == amd64
|
|
@${MKDIR} ${STAGEDIR}${TARGET32_DIR}
|
|
(cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${STAGEDIR}${TARGET32_DIR})
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|