diff options
author | skrll <skrll@pkgsrc.org> | 2003-01-20 10:03:40 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2003-01-20 10:03:40 +0000 |
commit | 55966f3f8441576d4c8ac402e42f81a73587c4fa (patch) | |
tree | 281d4eb4b00f6fc47b7b11e966102e98cddc72a2 /x11/kde3 | |
parent | f05976d42617e7ea6d8f6f57b9553b5b0aa6ecad (diff) | |
download | pkgsrc-55966f3f8441576d4c8ac402e42f81a73587c4fa.tar.gz |
The result of my recent KDE fiddlings
- Build all packages with a --disable-static libtool. This is how the
packages should be built and means that we don't get a load of useless
static libraries.
- Use x11/kde3/files/foo_main.cpp instead of creating N copies with
patches.
- Some other PLIST fixes
- Fix PR 19848. kspell doesn't find dictionaries.
Diffstat (limited to 'x11/kde3')
-rw-r--r-- | x11/kde3/Makefile.foo_main | 11 | ||||
-rw-r--r-- | x11/kde3/Makefile.kde3 | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/x11/kde3/Makefile.foo_main b/x11/kde3/Makefile.foo_main new file mode 100644 index 00000000000..d0cd734cdaf --- /dev/null +++ b/x11/kde3/Makefile.foo_main @@ -0,0 +1,11 @@ +# $NetBSD: Makefile.foo_main,v 1.1 2003/01/20 10:04:01 skrll Exp $ +# +# This Makefile fragment is included in a KDE package Makefile to +# create foo_main.cpp files needed to fix the linking modules into +# binaries/libraries problem that affects a.out platforms. + +post-patch: + @for f in ${FOO_MAIN_FILES}; do \ + ${LN} -s ${.CURDIR}/../../x11/kde3/files/foo_main.cpp \ + ${WRKSRC}/$${f}; \ + done diff --git a/x11/kde3/Makefile.kde3 b/x11/kde3/Makefile.kde3 index fb8c2d3bb5a..29cf71ab29e 100644 --- a/x11/kde3/Makefile.kde3 +++ b/x11/kde3/Makefile.kde3 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.kde3,v 1.7 2003/01/02 23:17:58 wiz Exp $ +# $NetBSD: Makefile.kde3,v 1.8 2003/01/20 10:04:01 skrll Exp $ # # This Makefile fragment is included at the top of package Makefiles for # KDE3-distributed packages (they all share common configure and build @@ -18,4 +18,4 @@ HOMEPAGE?= http://www.kde.org/ USE_GMAKE= YES GNU_CONFIGURE= YES USE_LIBTOOL= YES -LIBTOOL_OVERRIDE= ${WRKSRC}/libtool +SHLIBTOOL_OVERRIDE= ${WRKSRC}/libtool |