mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 18:06:27 -04:00
New compat11x port based on 11.0-RELEASE-p10.
This commit is contained in:
parent
766ffd9030
commit
ad13b9f5a2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=442944
6 changed files with 73 additions and 0 deletions
|
@ -45,6 +45,7 @@
|
|||
SUBDIR += colortail
|
||||
SUBDIR += colwide
|
||||
SUBDIR += compat10x
|
||||
SUBDIR += compat11x
|
||||
SUBDIR += compat4x
|
||||
SUBDIR += compat5x
|
||||
SUBDIR += compat6x
|
||||
|
|
39
misc/compat11x/Makefile
Normal file
39
misc/compat11x/Makefile
Normal file
|
@ -0,0 +1,39 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= compat11x
|
||||
PORTVERSION= 11.0.1100122.20170608
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= LOCAL/des
|
||||
PKGNAMESUFFIX= -${ARCH}
|
||||
DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= des@FreeBSD.org
|
||||
COMMENT= Convenience package to install the compat11x libraries
|
||||
|
||||
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} < 1100000
|
||||
IGNORE= is for FreeBSD 11.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>
|
5
misc/compat11x/distinfo
Normal file
5
misc/compat11x/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
TIMESTAMP = 1496942485
|
||||
SHA256 (compat11x-amd64-11.0.1100122.20170608.tar.xz) = 0716ff9854096e0b0a22bc540ca87cdf9981f0599cd9fa6f6dcc815e016809a3
|
||||
SIZE (compat11x-amd64-11.0.1100122.20170608.tar.xz) = 772608
|
||||
SHA256 (compat11x-i386-11.0.1100122.20170608.tar.xz) = f08c607b818f85d5e84bd8a668a719969b2a7a61ca63ef123ffa263f35ede8ed
|
||||
SIZE (compat11x-i386-11.0.1100122.20170608.tar.xz) = 415672
|
12
misc/compat11x/pkg-descr
Normal file
12
misc/compat11x/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
This package allows you to install the compat10x libraries on your
|
||||
system, so you can use legacy binaries that depend on them.
|
||||
|
||||
Ports usage example:
|
||||
|
||||
--
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} >= 1100000
|
||||
LIB_DEPENDS+= libelf.so.1:misc/compat10x
|
||||
.endif
|
||||
--
|
10
misc/compat11x/pkg-plist.amd64
Normal file
10
misc/compat11x/pkg-plist.amd64
Normal file
|
@ -0,0 +1,10 @@
|
|||
lib/compat/libarchive.so.6
|
||||
lib/compat/libbsnmptools.so.0
|
||||
lib/compat/libmilter.so.5
|
||||
lib/compat/libproc.so.3
|
||||
lib/compat/libzfs.so.2
|
||||
lib/compat/snmp_atm.so.6
|
||||
lib32/compat/libarchive.so.6
|
||||
lib32/compat/libmilter.so.5
|
||||
lib32/compat/libproc.so.3
|
||||
lib32/compat/libzfs.so.2
|
6
misc/compat11x/pkg-plist.i386
Normal file
6
misc/compat11x/pkg-plist.i386
Normal file
|
@ -0,0 +1,6 @@
|
|||
lib/compat/libarchive.so.6
|
||||
lib/compat/libbsnmptools.so.0
|
||||
lib/compat/libmilter.so.5
|
||||
lib/compat/libproc.so.3
|
||||
lib/compat/libzfs.so.2
|
||||
lib/compat/snmp_atm.so.6
|
Loading…
Add table
Reference in a new issue