5422c0ba90
resepectively. This makes the build output look more logically grouped into phases.
87 lines
2.2 KiB
Makefile
87 lines
2.2 KiB
Makefile
# $NetBSD: Makefile,v 1.29 2004/02/18 19:13:30 jlam Exp $
|
|
#
|
|
|
|
PKGNAME= ${DISTNAME:C/-/-base-/}
|
|
SVR4_PKGNAME= ltoob
|
|
|
|
COMMENT= Generic shared library support script (the script itself)
|
|
|
|
CONFLICTS+= libtool<=1.3.5nb11
|
|
|
|
# We are going to want libtool to find the same versions of the C, C++,
|
|
# and Fortran compilers.
|
|
#
|
|
USE_LANGUAGES= c c++ fortran
|
|
|
|
.include "../../devel/libtool/Makefile.common"
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-1.4-sparc) || \
|
|
!empty(MACHINE_PLATFORM:MNetBSD-1.4.[12]-sparc)
|
|
DEPENDS+= c++rt0>=1.0:../../sysutils/c++rt0
|
|
.endif
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
. if !exists(/usr/libexec/ld.so) && !exists(/usr/libexec/ld.elf_so)
|
|
CONFIGURE_ARGS= --disable-shared
|
|
BUILD_SHLIBTOOL= NO
|
|
. endif
|
|
.else
|
|
CONFIGURE_ARGS= --enable-ltdl-install
|
|
.endif
|
|
|
|
# The configure script persists in trying to find the path to ld, which
|
|
# always ends up in ${BUILDLINK_DIR}. Prevent it from caring.
|
|
#
|
|
CONFIGURE_ENV+= lt_cv_path_LD=${LD:Q}
|
|
|
|
# The configure script persists in trying to find the path to sed or gsed,
|
|
# which breaks when SED is nbsed. Tell it explicitly to use the sed
|
|
# named by ${SED}.
|
|
#
|
|
CONFIGURE_ENV+= SED=${SED:Q}
|
|
CONFIGURE_ENV+= lt_cv_path_SED=${SED:Q}
|
|
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-*-*)
|
|
. include "../../devel/dlcompat/buildlink3.mk"
|
|
.endif
|
|
|
|
BUILD_SHLIBTOOL?= yes
|
|
BUILDING_SHLIBTOOL= no
|
|
|
|
.if !empty(BUILD_SHLIBTOOL:M[nN][oO])
|
|
PLIST_SUBST+= SHLIBTOOL="@comment"
|
|
.else
|
|
SHLIBTOOL_WRKDIR= ${WRKDIR}/shlibtool
|
|
SHLIBTOOL_WRKSRC= ${WRKSRC:S/${WRKDIR}/${SHLIBTOOL_WRKDIR}/}
|
|
SHLIBTOOL_MAKEFLAGS= BUILDING_SHLIBTOOL=yes
|
|
SHLIBTOOL_MAKEFLAGS+= WRKDIR=${SHLIBTOOL_WRKDIR}
|
|
PLIST_SUBST+= SHLIBTOOL=
|
|
. if !empty(BUILDING_SHLIBTOOL:M[yY][eE][sS])
|
|
CONFIGURE_ARGS+= --disable-static
|
|
. else
|
|
post-configure:
|
|
cd ${.CURDIR} && ${MAKE} configure ${SHLIBTOOL_MAKEFLAGS}
|
|
|
|
post-build:
|
|
cd ${.CURDIR} && ${MAKE} build ${SHLIBTOOL_MAKEFLAGS}
|
|
. endif
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${SHLIBTOOL_WRKSRC}/libtool ${PREFIX}/bin/shlibtool
|
|
.endif
|
|
|
|
.PHONY: fix-libtool
|
|
fix-libtool:
|
|
cd ${WRKSRC}; for f in libtool; do \
|
|
${SED} -e "s,-L${BUILDLINK_DIR}/lib,," $$f > $$f.new; \
|
|
if [ -x $$f ]; then ${CHMOD} +x $$f.new; fi; \
|
|
${MV} -f $$f.new $$f; \
|
|
done
|
|
|
|
post-build: fix-libtool
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|