diff options
author | bsiegert <bsiegert@pkgsrc.org> | 2013-11-30 16:25:12 +0000 |
---|---|---|
committer | bsiegert <bsiegert@pkgsrc.org> | 2013-11-30 16:25:12 +0000 |
commit | cb9cac0252032a5b703cb1b2db83d2d4f5361713 (patch) | |
tree | 18a84a9fa45e29b1c05e9cb6c5ff13dd6a07122a /databases/db4 | |
parent | 3bad46cef6f39537c7e0bb3ad71bc69f330275ae (diff) | |
download | pkgsrc-cb9cac0252032a5b703cb1b2db83d2d4f5361713.tar.gz |
Fix build of db{4,46,5} on MirBSD.
The build does not create all those unnecessary shlib symlinks on MirBSD
(I believe this is due to a patch I sent in years ago), so add separate
PLIST.MirBSD files that do not contain these files.
(BTW, I would be grateful to learn how I can achieve the same effect
without copying PLISTs, but this works.)
Diffstat (limited to 'databases/db4')
-rw-r--r-- | databases/db4/PLIST.MirBSD | 22 | ||||
-rw-r--r-- | databases/db4/options.mk | 8 |
2 files changed, 29 insertions, 1 deletions
diff --git a/databases/db4/PLIST.MirBSD b/databases/db4/PLIST.MirBSD new file mode 100644 index 00000000000..928f719be66 --- /dev/null +++ b/databases/db4/PLIST.MirBSD @@ -0,0 +1,22 @@ +@comment $NetBSD: PLIST.MirBSD,v 1.1 2013/11/30 16:25:12 bsiegert Exp $ +bin/db4_archive +bin/db4_checkpoint +bin/db4_deadlock +bin/db4_dump +bin/db4_hotbackup +bin/db4_load +bin/db4_printlog +bin/db4_recover +bin/db4_sql +bin/db4_stat +bin/db4_upgrade +bin/db4_verify +include/db4/db.h +include/db4/db_185.h +include/db4/db_cxx.h +lib/libdb4-4.8.la +lib/libdb4.a +lib/libdb4_cxx-4.8.la +lib/libdb4_cxx-4.so +lib/libdb4_cxx.a +lib/libdb4_cxx.so diff --git a/databases/db4/options.mk b/databases/db4/options.mk index d5168fbebd4..478225d5053 100644 --- a/databases/db4/options.mk +++ b/databases/db4/options.mk @@ -1,11 +1,17 @@ -# $NetBSD: options.mk,v 1.5 2013/03/01 16:10:23 jperkin Exp $ +# $NetBSD: options.mk,v 1.6 2013/11/30 16:25:12 bsiegert Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.db4 PKG_SUPPORTED_OPTIONS= doc PKG_SUGGESTED_OPTIONS= doc +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "MirBSD" +PLIST_SRC+= PLIST.${OPSYS} +.else PLIST_SRC+= PLIST +.endif .include "../../mk/bsd.options.mk" |