mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
# New ports collection makefile for: ldconfig_compat
|
|
# Date created: 30 Dec 2005
|
|
# Whom: Florent Thoumie <flz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ldconfig_compat
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= misc
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= flz@FreeBSD.org
|
|
COMMENT= Ldconfig compatibility script
|
|
|
|
NO_BUILD= yes
|
|
SUB_FILES= ldconfig_compat.sh
|
|
USE_RC_SUBR= yes
|
|
|
|
LOCAL_DIRS= ${LDCONFIG_DIR} \
|
|
${LDCONFIG32_DIR}
|
|
|
|
SUB_LIST= LDCONFIG_DIR=${LDCONFIG_DIR} \
|
|
LDCONFIG32_DIR=${LDCONFIG32_DIR}
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
LOCAL_PREFIXES= ${PREFIX} ${LOCALBASE}
|
|
.else
|
|
LOCAL_PREFIXES= ${PREFIX}
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${.CURDIR}/bsd.ldconfig.mk"
|
|
|
|
.if !( ${OSVERSION} < 504105 || \
|
|
( ${OSVERSION} >= 700000 && ${OSVERSION} < 700012 ) || \
|
|
( ${OSVERSION} >= 600000 && ${OSVERSION} < 600104 ) )
|
|
IGNORE= isn't needed (part of base rc.d)
|
|
.endif
|
|
|
|
do-fetch:
|
|
@${DO_NADA}
|
|
|
|
do-install:
|
|
.if ${OSVERSION} >= 600101
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/ldconfig_compat.sh ${PREFIX}/etc/rc.d/ldconfig_compat
|
|
@${ECHO_CMD} "etc/rc.d/ldconfig_compat" >> ${TMPPLIST}
|
|
.elif ${OSVERSION} >= 500037
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/ldconfig_compat.sh /etc/rc.d/ldconfig_compat
|
|
@${ECHO_CMD} "@cwd /" >> ${TMPPLIST}
|
|
@${ECHO_CMD} "etc/rc.d/ldconfig_compat" >> ${TMPPLIST}
|
|
.else
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/ldconfig_compat.sh ${PREFIX}/etc/rc.d/000.ldconfig_compat.sh
|
|
@${ECHO_CMD} "etc/rc.d/000.ldconfig_compat.sh" >> ${TMPPLIST}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|