diff options
author | bouyer <bouyer> | 1999-12-06 20:44:57 +0000 |
---|---|---|
committer | bouyer <bouyer> | 1999-12-06 20:44:57 +0000 |
commit | d9c40ce2dad727518a836865bf57fe0b2f81ca7c (patch) | |
tree | d16ab387de15677ca1a39ba84c454ead9e32a017 /x11/kdebase/Makefile | |
parent | c3deee7fa126bed56702b9aaff12dee1a820ac22 (diff) | |
download | pkgsrc-d9c40ce2dad727518a836865bf57fe0b2f81ca7c.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/Makefile | 9 |
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 |