summaryrefslogtreecommitdiff
path: root/x11/kdebase/Makefile
diff options
context:
space:
mode:
authorbouyer <bouyer@pkgsrc.org>1999-12-06 20:44:57 +0000
committerbouyer <bouyer@pkgsrc.org>1999-12-06 20:44:57 +0000
commita6539fb6bdd241ad7f936f2c261fd7f20e8b408d (patch)
treed16ab387de15677ca1a39ba84c454ead9e32a017 /x11/kdebase/Makefile
parent887daf5c75b6dd473b5d0fab836944fe743f3636 (diff)
downloadpkgsrc-a6539fb6bdd241ad7f936f2c261fd7f20e8b408d.tar.gz
Make kde work on solaris. Mostly:
- don't hardcode -lossaudio in Makefiles, teach configure about it instead - different PLIST
Diffstat (limited to 'x11/kdebase/Makefile')
-rw-r--r--x11/kdebase/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/x11/kdebase/Makefile b/x11/kdebase/Makefile
index 645bd64f203..090e3ab9ea0 100644
--- a/x11/kdebase/Makefile
+++ b/x11/kdebase/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.58 1999/11/15 09:04:03 tron Exp $
+# $NetBSD: Makefile,v 1.59 1999/12/06 20:44:58 bouyer Exp $
# FreeBSD Id: Makefile,v 1.6 1997/11/27 00:35:27 se Exp
DISTNAME= kdebase-1.1.2
@@ -50,7 +50,7 @@ post-extract:
post-install:
@${CHMOD} u+s ${PREFIX}/bin/klock
- @${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
+ @${CP} ${PLIST_INIT} ${PLIST_SRC}
@(cd ${PREFIX}; find ${PLIST_DIRS} -type f >>${PLIST_SRC})
@(cd ${PREFIX}; find ${PLIST_DIRS} -type d | sort -r | \
${SED} "s/^/\@dirrm /" >>${PLIST_SRC})
@@ -73,3 +73,8 @@ post-install:
${PREFIX}/share/doc/kde/HTML/en/kdm
.include "../../mk/bsd.pkg.mk"
+.if (${OPSYS} == "SunOS")
+PLIST_INIT= ${PKGDIR}/PLIST-SunOS
+.else
+PLIST_INIT= ${PKGDIR}/PLIST
+.endif