summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authortnn <tnn>2007-04-19 23:13:42 +0000
committertnn <tnn>2007-04-19 23:13:42 +0000
commitcaf76e1b13a1cea7d19cdc4c4991d43878e5141f (patch)
tree08318e555a969f515ee28bb6a2b613b9cc7f801f /mk
parent81b830584aa986438e95120d03be1620b8ff96bf (diff)
downloadpkgsrc-caf76e1b13a1cea7d19cdc4c4991d43878e5141f.tar.gz
add awk script to be used for Spectrum Object Module shlib handling.
Diffstat (limited to 'mk')
-rw-r--r--mk/plist/plist.mk3
-rw-r--r--mk/plist/shlib-som.awk11
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
+}