summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1997-12-02 22:36:46 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1997-12-02 22:36:46 +0000
commit742e50c8857a03c8c7813f4ae9fda480505dc692 (patch)
tree74fd06d17bb3486d50aac5b251f1353cb5e4feb9 /sysutils
parentUpgrade to Website META Language, Version 1.4.4 (diff)
Print a warning if mkisofs is not installed.
PR: ports/4814
Notes
Notes: svn path=/head/; revision=8962
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/cd-write/Makefile5
-rw-r--r--sysutils/cd-write/pkg-install18
2 files changed, 22 insertions, 1 deletions
diff --git a/sysutils/cd-write/Makefile b/sysutils/cd-write/Makefile
index 00c6100d5343..f7153e24c782 100644
--- a/sysutils/cd-write/Makefile
+++ b/sysutils/cd-write/Makefile
@@ -3,7 +3,7 @@
# Date created: 1 May 1997
# Whom: jmz
#
-# $Id: Makefile,v 1.6 1997/09/25 02:06:19 jmz Exp $
+# $Id: Makefile,v 1.7 1997/10/08 07:45:44 asami Exp $
#
DISTNAME= cd-write-1.4
@@ -23,4 +23,7 @@ pre-build:
@cd ${WRKSRC}/c++tk; mv Makefile Makefile~; \
sed -e s:/usr/local:${PREFIX}:g <Makefile~ >Makefile
+post-install:
+ @PREFIX=${PREFIX} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL
+
.include <bsd.port.mk>
diff --git a/sysutils/cd-write/pkg-install b/sysutils/cd-write/pkg-install
new file mode 100644
index 000000000000..992296d564ea
--- /dev/null
+++ b/sysutils/cd-write/pkg-install
@@ -0,0 +1,18 @@
+#!/bin/sh
+if [ "$2" != "POST-INSTALL" ]; then
+ exit 0
+fi
+if [ -e ${PREFIX}/bin/mkisofs ]; then
+ exit 0
+fi
+cat <<EOF
+*********************** Warning ***********************
+It seems that mkisofs is not installed on your system.
+You will only be able to burn audio disks or to copy
+data disks.
+Mkisofs is required if you want to create a filesystem
+image.
+*******************************************************
+EOF
+
+exit 0