pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/shells/zsh Pull in PLIST.${OPSYS} if existant.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/49f7b20c37f2
branches:  trunk
changeset: 488169:49f7b20c37f2
user:      tv <tv%pkgsrc.org@localhost>
date:      Tue Jan 25 13:13:55 2005 +0000

description:
Pull in PLIST.${OPSYS} if existant.

diffstat:

 shells/zsh/Makefile.common |  11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 7987166c2d70 -r 49f7b20c37f2 shells/zsh/Makefile.common
--- a/shells/zsh/Makefile.common        Tue Jan 25 13:13:35 2005 +0000
+++ b/shells/zsh/Makefile.common        Tue Jan 25 13:13:55 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.19 2005/01/18 12:44:53 uebayasi Exp $
+# $NetBSD: Makefile.common,v 1.20 2005/01/25 13:13:55 tv Exp $
 
 DISTNAME=       zsh-${ZSH_VERSION}
 CATEGORIES=    shells
@@ -55,12 +55,17 @@
 PLIST_SRC=     ${PKGDIR}/PLIST.dynamic ${PKGDIR}/PLIST
 .  else
 LDFLAGS+=      ${COMPILER_RPATH_FLAG}${PREFIX}/lib/zsh
-PLIST_SRC=     ${PKGDIR}/PLIST.shlibs ${PKGDIR}/PLIST.dynamic ${PKGDIR}/PLIST
+.    if exists(${PKGDIR}/PLIST.${OPSYS})
+PLIST_SRC=     ${PKGDIR}/PLIST.${OPSYS}
+.    else
+PLIST_SRC=     # empty
+.    endif
+PLIST_SRC+=    ${PKGDIR}/PLIST.shlibs ${PKGDIR}/PLIST.dynamic ${PKGDIR}/PLIST
 .  endif
 .endif
 
 .if ${OPSYS} == "Interix"
-CONFIGURE_ARGS+=       --without-tcsetpgrp
+CONFIGURE_ARGS+=--without-tcsetpgrp
 .endif
 
 .undef MANZ



Home | Main Index | Thread Index | Old Index