2007-06-20 05:00:26 +02:00
|
|
|
# New ports collection makefile for: compat6x
|
|
|
|
# Date created: 30 Nov 2006
|
|
|
|
# Whom: mnag
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= compat6x
|
2008-10-17 04:34:50 +02:00
|
|
|
PORTVERSION= 6.4.604000.200810
|
2009-09-03 15:13:39 +02:00
|
|
|
PORTREVISION= 3
|
2007-06-20 05:00:26 +02:00
|
|
|
CATEGORIES= misc
|
|
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
|
|
http://people.freebsd.org/~${MASTER_SITE_SUBDIR}/
|
|
|
|
MASTER_SITE_SUBDIR= mnag/compat6x
|
|
|
|
PKGNAMESUFFIX= -${ARCH}
|
|
|
|
DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION}
|
|
|
|
|
2012-02-01 16:53:08 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2007-06-20 05:00:26 +02:00
|
|
|
COMMENT= A convenience package to install the compat6x libraries
|
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64 alpha sparc64
|
|
|
|
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} < 700043
|
|
|
|
IGNORE= is for FreeBSD 7.x and newer
|
|
|
|
.endif
|
|
|
|
|
2009-12-04 07:34:49 +01:00
|
|
|
.if ${ARCH} == "sparc64"
|
|
|
|
BROKEN= Does not install on sparc64: fails to link lib/compat/libpthread.so.2
|
|
|
|
.endif
|
|
|
|
|
2007-06-20 05:00:26 +02:00
|
|
|
.if ${ARCH} == amd64
|
|
|
|
PLIST_SUB+= LDCONFIG_LIB32="${LDCONFIG} -32"
|
|
|
|
USE_LDCONFIG32= ${TARGET32_DIR}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
do-install:
|
2011-09-18 19:30:25 +02:00
|
|
|
@${MKDIR} -m 755 ${TARGET_DIR}
|
2009-08-27 17:48:59 +02:00
|
|
|
.if ${OSVERSION} >= 800105
|
2009-08-31 13:03:49 +02:00
|
|
|
${RM} -f ${WRKSRC}/lib/libpthread.so.2
|
2009-09-03 15:13:39 +02:00
|
|
|
(cd ${TARGET_DIR} && ${LN} -sf libthr.so.2 libpthread.so.2)
|
2009-08-27 17:48:59 +02:00
|
|
|
.endif
|
2007-06-20 05:00:26 +02:00
|
|
|
(cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${TARGET_DIR})
|
|
|
|
.if ${ARCH} == amd64
|
|
|
|
@${MKDIR} ${TARGET32_DIR}
|
2009-08-27 17:48:59 +02:00
|
|
|
. if ${OSVERSION} >= 800105
|
|
|
|
${RM} -f ${WRKSRC}/lib32/libpthread.so.2
|
2009-09-03 15:13:39 +02:00
|
|
|
(cd ${TARGET32_DIR} && ${LN} -sf libthr.so.2 libpthread.so.2)
|
2009-08-27 17:48:59 +02:00
|
|
|
. endif
|
2007-06-20 05:00:26 +02:00
|
|
|
(cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR})
|
|
|
|
.endif
|
|
|
|
|
2009-02-12 17:46:23 +01:00
|
|
|
post-install:
|
2007-06-20 05:00:26 +02:00
|
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|