a8ed49a836
by extending suse100_linux with the same override code as suse91 has. Bump revision.
84 lines
2.6 KiB
Text
84 lines
2.6 KiB
Text
# $NetBSD: Makefile.common,v 1.4 2006/04/28 14:15:06 joerg Exp $
|
|
|
|
.include "../../emulators/suse100_linux/vars.mk"
|
|
.include "../../emulators/suse100_linux/arch.mk"
|
|
|
|
ONLY_FOR_PLATFORM+= NetBSD-[2-9]*-i386 NetBSD-3.99*-x86_64 \
|
|
NetBSD-[2-9]*-powerpc \
|
|
NetBSD-[4-9]*-x86_64 FreeBSD-*-i386 \
|
|
DragonFly-*-i386
|
|
|
|
_SUSE_FTP_SUBDIR= distribution/SL-${SUSE_VERSION}-OSS/inst-source/suse/${SUSE_ARCH}/
|
|
|
|
MASTER_SITE_SUSE100?= ftp://suse.inode.at/opensuse/${_SUSE_FTP_SUBDIR}
|
|
|
|
DIST_SUBDIR?= suse${SUSE_VERSION:S/.//}/${SUSE_ARCH}
|
|
|
|
WRKSRC?= ${WRKDIR}
|
|
MANCOMPRESSED?= yes
|
|
|
|
EMULSUBDIR= emul/linux
|
|
EMULDIR= ${PREFIX}/${EMULSUBDIR}
|
|
|
|
RPM2PKG= ${PREFIX}/sbin/rpm2pkg
|
|
BUILD_DEPENDS+= rpm2pkg>=2.1:../../pkgtools/rpm2pkg
|
|
|
|
BUILD_DEFS+= RPMFILES
|
|
.if defined(RPMIGNOREPATH)
|
|
BUILD_DEFS+= RPMIGNOREPATH
|
|
.endif
|
|
|
|
# The SuSE Linux packages have circular dependencies.
|
|
LDD?= ${TRUE}
|
|
|
|
RPM2PKGSTRIP?= 1
|
|
RPM2PKGARGS?= -d ${PREFIX} -f ${PLIST_SRC} -p ${EMULSUBDIR}
|
|
.if empty(RPM2PKGSTRIP:M0)
|
|
RPM2PKGARGS+= -s ${RPM2PKGSTRIP}
|
|
.endif
|
|
.for TEMP in ${RPMIGNOREPATH}
|
|
RPM2PKGARGS+= -i ${TEMP}
|
|
.endfor
|
|
.for TEMP in ${RPMFILES}
|
|
RPM2PKGARGS+= ${DISTDIR}/${DIST_SUBDIR}/${TEMP}
|
|
.endfor
|
|
|
|
# regenerate distinfo for all platforms supported by the suse100_* packages
|
|
suse100-distinfo:
|
|
( ${ECHO} '$$'NetBSD'$$'; \
|
|
${ECHO} ''; \
|
|
MACHINE_ARCH=i386 ${MAKE} distinfo 1>&2; \
|
|
${GREP} rpm distinfo; \
|
|
MACHINE_ARCH=powerpc ${MAKE} distinfo 1>&2; \
|
|
${GREP} rpm distinfo; \
|
|
MACHINE_ARCH=x86_64 ${MAKE} distinfo 1>&2; \
|
|
${GREP} rpm distinfo; \
|
|
) > distinfo.new
|
|
${MV} -f distinfo.new distinfo
|
|
|
|
.if !target(do-install)
|
|
do-install:
|
|
@if [ -f ${PKGDIR}/PLIST ]; then \
|
|
${CP} ${PKGDIR}/PLIST ${PLIST_SRC}; \
|
|
else \
|
|
${RM} -f ${PLIST_SRC}; \
|
|
${CP} ${PKGSRCDIR}/emulators/suse_linux/PLIST_dynamic ${PLIST_SRC} ; \
|
|
fi
|
|
@if [ -f ${PKGDIR}/PLIST_rpmfix.${MACHINE_ARCH} ]; then \
|
|
${SED} -e 's,^/,${EMULSUBDIR}/,' ${PKGDIR}/PLIST_rpmfix.${MACHINE_ARCH} >> ${PLIST_SRC}; \
|
|
fi
|
|
${RPM2PKG} ${RPM2PKGARGS}
|
|
@if ${GREP} -q 'lib.*\.so' ${PLIST_SRC}; then \
|
|
${ECHO_MSG} "===> [Automatic Linux shared object handling]"; \
|
|
${EMULDIR}/sbin/ldconfig -r ${EMULDIR}; \
|
|
${MV} -f ${PLIST_SRC} ${PLIST_SRC}.old; \
|
|
${GREP} -v '^@dirrm' ${PLIST_SRC}.old >${PLIST_SRC} || ${TRUE}; \
|
|
${ECHO} "@exec %D/${EMULSUBDIR}/sbin/ldconfig -r %D/${EMULSUBDIR}" >>${PLIST_SRC}; \
|
|
${ECHO} "@unexec %D/${EMULSUBDIR}/sbin/ldconfig -r %D/${EMULSUBDIR} 2>/dev/null" >>${PLIST_SRC}; \
|
|
${GREP} '^@dirrm' ${PLIST_SRC}.old >>${PLIST_SRC} || ${TRUE}; \
|
|
${RM} -f ${PLIST_SRC}.old; \
|
|
fi
|
|
.endif
|
|
|
|
show-shlib-type:
|
|
@${ECHO} linux-${MACHINE_ARCH}
|