aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2003-01-20 17:19:47 +0800
committeredwin <edwin@FreeBSD.org>2003-01-20 17:19:47 +0800
commit94c4f8952fa0cac9503a400224cb9f194fcb84a0 (patch)
tree454d1c1b9530cc1c32e3f35fd9cd55d42e5f1384
parent24098b568df0676434494459d55698970508e650 (diff)
downloadfreebsd-ports-gnome-94c4f8952fa0cac9503a400224cb9f194fcb84a0.tar.gz
freebsd-ports-gnome-94c4f8952fa0cac9503a400224cb9f194fcb84a0.tar.zst
freebsd-ports-gnome-94c4f8952fa0cac9503a400224cb9f194fcb84a0.zip
Add usage-example for the misc/compat[34]x ports
-rw-r--r--misc/compat3x/pkg-descr9
-rw-r--r--misc/compat4x/pkg-descr9
2 files changed, 18 insertions, 0 deletions
diff --git a/misc/compat3x/pkg-descr b/misc/compat3x/pkg-descr
index e9fecf5361ab..544c9fd1ab45 100644
--- a/misc/compat3x/pkg-descr
+++ b/misc/compat3x/pkg-descr
@@ -1,2 +1,11 @@
This package allows you to install the compat3x libraries on your
system, so you can use legacy binaries that depend on them.
+
+Usage example:
+
+ .include <bsd.port.pre.mk>
+
+ .if ${OSVERSION} >= 400000
+ LIB_DEPENDS+= c.3:${PORTSDIR}/misc/compat3x
+ .endif
+
diff --git a/misc/compat4x/pkg-descr b/misc/compat4x/pkg-descr
index 5f6826914af9..d78c931f5988 100644
--- a/misc/compat4x/pkg-descr
+++ b/misc/compat4x/pkg-descr
@@ -1,2 +1,11 @@
This package allows you to install the compat4x libraries on your
system, so you can use legacy binaries that depend on them.
+
+Usage example:
+
+ .include <bsd.port.pre.mk>
+
+ .if ${OSVERSION} >= 500000
+ LIB_DEPENDS+= c.4:${PORTSDIR}/misc/compat4x
+ .endif
+