summaryrefslogtreecommitdiff
path: root/misc/compat3x
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-08-15 18:17:47 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-08-15 18:17:47 +0000
commitfa5fed5bbe265622edcb2bbc7cf07aae7196f1ee (patch)
tree71cea19348efc097f5dc332a3d015e3c9f75614d /misc/compat3x
parentFix ftp/p5-Net-FTPServer build on -stable. (diff)
Change PREFIX from /usr to the default not to harm bento.
Prepare rc.d scripts that do ldconfig on startup, because $PREFIX/lib/compat and $PREFIX/lib/compat/aout are no longer included in the default $ldconfig_paths and $ldconfig_paths_aout, respectively.
Notes
Notes: svn path=/head/; revision=46292
Diffstat (limited to 'misc/compat3x')
-rw-r--r--misc/compat3x/Makefile16
-rw-r--r--misc/compat3x/pkg-plist2
2 files changed, 11 insertions, 7 deletions
diff --git a/misc/compat3x/Makefile b/misc/compat3x/Makefile
index 486f86afe52b..c72c5a5f482b 100644
--- a/misc/compat3x/Makefile
+++ b/misc/compat3x/Makefile
@@ -7,6 +7,7 @@
PORTNAME= compat3x
PORTVERSION= 4.3
+PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG}
MASTER_SITE_SUBDIR= releases/${ARCH}/${PORTVERSION}-RELEASE/${PORTNAME}
@@ -23,30 +24,31 @@ MAINTAINER= hetzels@westbend.net
ONLY_FOR_ARCHS= i386
-PREFIX?= /usr
-
WRKSRC= ${WRKDIR}/usr/lib/compat
NO_MTREE= yes
-NO_BUILD= yes
TARGET_DIR= ${PREFIX}/lib/compat
INSTALLS_SHLIB= yes
LDCONFIG_DIRS= %%PREFIX%%/lib/compat
-.if defined(BATCH) || defined(PACKAGE_BUILDING)
-IGNORE= "does damage to bento cluster"
-.endif
+.include <bsd.port.pre.mk>
do-extract:
${MKDIR} ${WRKDIR}
cd ${_DISTDIR} && ${CAT} ${DISTFILES} | ${TAR} -xzf - -C ${WRKDIR}
${MV} ${WRKSRC}/libc_r.so.4 ${WRKSRC}/libc_r.so.4.compat3x
+do-build:
+ @( ${ECHO} '#!/bin/sh'; ${ECHO} '${LDCONFIG} -m ${LDCONFIG_RUNLIST}'; \
+ ) > ${WRKDIR}/000.${PORTNAME}.sh
+
do-install:
+ ${MKDIR} ${TARGET_DIR}
${INSTALL_DATA} ${WRKSRC}/* ${TARGET_DIR}/
if [ ! -e ${TARGET_DIR}/libc_r.so.4.compat4x ]; then \
${LN} -sf ${TARGET_DIR}/libc_r.so.4.compat3x ${TARGET_DIR}/libc_r.so.4; \
fi
+ ${INSTALL_SCRIPT} ${WRKDIR}/000.${PORTNAME}.sh ${PREFIX}/etc/rc.d/
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/misc/compat3x/pkg-plist b/misc/compat3x/pkg-plist
index b82a1d8bfd44..461e22dfccb7 100644
--- a/misc/compat3x/pkg-plist
+++ b/misc/compat3x/pkg-plist
@@ -1,3 +1,4 @@
+etc/rc.d/000.compat3x.sh
lib/compat/libalias.so.3
lib/compat/libc.so.3
lib/compat/libc_r.so.3
@@ -22,3 +23,4 @@ lib/compat/libutil.so.2
lib/compat/libvgl.so.1
lib/compat/libwrap.so.2
lib/compat/libxpg4.so.2
+@unexec rmdir %D/lib/compat 2>/dev/null || true