aboutsummaryrefslogtreecommitdiffstats
path: root/devel/libburn
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2008-11-30 04:23:02 +0800
committermiwi <miwi@FreeBSD.org>2008-11-30 04:23:02 +0800
commit394cf49a94b2731abdd86d8552881d5785ec9d12 (patch)
tree4a12a1788e8b4ca030f16dbfb9b8b839110879d8 /devel/libburn
parenteebb96ba43e71ae7370d473bb39f6b5e2b0e0c3c (diff)
downloadfreebsd-ports-gnome-394cf49a94b2731abdd86d8552881d5785ec9d12.tar.gz
freebsd-ports-gnome-394cf49a94b2731abdd86d8552881d5785ec9d12.tar.zst
freebsd-ports-gnome-394cf49a94b2731abdd86d8552881d5785ec9d12.zip
Add pkg_message re kernel config and devfs rules needed
PR: 129264 Submitted by: "J.R. Oldroyd" <fbsd@opal.com> (maintainer)
Diffstat (limited to 'devel/libburn')
-rw-r--r--devel/libburn/Makefile1
-rw-r--r--devel/libburn/pkg-message17
2 files changed, 18 insertions, 0 deletions
diff --git a/devel/libburn/Makefile b/devel/libburn/Makefile
index f9aa0597f5c8..4099afa31cda 100644
--- a/devel/libburn/Makefile
+++ b/devel/libburn/Makefile
@@ -26,5 +26,6 @@ post-install:
${MKDIR} ${PREFIX}/libdata/pkgconfig
${MV} ${PREFIX}/lib/pkgconfig/${PORTNAME}-1.pc ${PREFIX}/libdata/pkgconfig/${PORTNAME}-1.pc
${RMDIR} ${PREFIX}/lib/pkgconfig
+ @${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
diff --git a/devel/libburn/pkg-message b/devel/libburn/pkg-message
new file mode 100644
index 000000000000..275802aca133
--- /dev/null
+++ b/devel/libburn/pkg-message
@@ -0,0 +1,17 @@
+You will need to enable CAM support in the kernel. Your kernel
+configuation should include:
+ for SCSI CD/DVD devices:
+ device scbus
+ device cd
+ device pass
+ for ATA CD/DVD devices you will need the above, plus:
+ device atapicam
+
+You will also want to make the CD devices world read- and writable.
+In /etc/devfs.rules, add the following:
+ [system=10]
+ add path 'acd*' mode 0666
+ add path 'cd*' mode 0666
+ add path 'pass*' mode 0666
+ add path 'xpt*' mode 0666
+