diff options
author | tnn <tnn@pkgsrc.org> | 2007-04-19 23:13:42 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-04-19 23:13:42 +0000 |
commit | f8ef1ab63e6c11c29aae0d16cc46d0cbb5f3a65b (patch) | |
tree | 08318e555a969f515ee28bb6a2b613b9cc7f801f /mk/plist | |
parent | a99cce07c0044be574ad76b0ab1a87d04f36f20d (diff) | |
download | pkgsrc-f8ef1ab63e6c11c29aae0d16cc46d0cbb5f3a65b.tar.gz |
add awk script to be used for Spectrum Object Module shlib handling.
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist.mk | 3 | ||||
-rw-r--r-- | mk/plist/shlib-som.awk | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index e3ef788c993..1448cdb8fbd 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.21 2007/04/11 19:01:00 tnn Exp $ +# $NetBSD: plist.mk,v 1.22 2007/04/19 23:13:42 tnn Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -155,6 +155,7 @@ _PLIST_INFO_AWK+= -f ${.CURDIR}/../../mk/plist/plist-info.awk _PLIST_SHLIB_AWK= -f ${_SHLIB_AWKFILE.${SHLIB_TYPE}} _SHLIB_AWKFILE.ECOFF= ${.CURDIR}/../../mk/plist/shlib-elf.awk _SHLIB_AWKFILE.ELF= ${.CURDIR}/../../mk/plist/shlib-elf.awk +_SHLIB_AWKFILE.SOM= ${.CURDIR}/../../mk/plist/shlib-som.awk _SHLIB_AWKFILE.aixlib= ${.CURDIR}/../../mk/plist/shlib-none.awk _SHLIB_AWKFILE.a.out= ${.CURDIR}/../../mk/plist/shlib-aout.awk _SHLIB_AWKFILE.dylib= ${.CURDIR}/../../mk/plist/shlib-dylib.awk diff --git a/mk/plist/shlib-som.awk b/mk/plist/shlib-som.awk new file mode 100644 index 00000000000..ab8c788abe5 --- /dev/null +++ b/mk/plist/shlib-som.awk @@ -0,0 +1,11 @@ +# $NetBSD: shlib-som.awk,v 1.1 2007/04/19 23:13:42 tnn Exp $ +# +### +### PLIST shlib filter for Spectrum Object Module format, SOM, on HP-UX. +### + +# XXX: Nothing here yet. Libtoolized packages don't need any special attention, +# but for others we need to manually deal with the .sl library suffix. +{ + print +} |