diff options
author | ahoka <ahoka@pkgsrc.org> | 2009-02-28 14:00:23 +0000 |
---|---|---|
committer | ahoka <ahoka@pkgsrc.org> | 2009-02-28 14:00:23 +0000 |
commit | a1d941e96e3c8e2e8756636abdddeec3ba4b4d9c (patch) | |
tree | e5908a28315f869cf2720bab172caa0a81dc9c65 /sysutils/hal | |
parent | 1e70de466a8a3e70b89787faf0b5b6d9953224e0 (diff) | |
download | pkgsrc-a1d941e96e3c8e2e8756636abdddeec3ba4b4d9c.tar.gz |
Create /media automatically, so hald mount actually works
without manual labour. Bump revision.
Diffstat (limited to 'sysutils/hal')
-rw-r--r-- | sysutils/hal/INSTALL | 9 | ||||
-rw-r--r-- | sysutils/hal/Makefile | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/sysutils/hal/INSTALL b/sysutils/hal/INSTALL new file mode 100644 index 00000000000..33d1731a4e7 --- /dev/null +++ b/sysutils/hal/INSTALL @@ -0,0 +1,9 @@ +# $NetBSD: INSTALL,v 1.1 2009/02/28 14:00:23 ahoka Exp $ + +case ${STAGE} in +POST-INSTALL) + if [ ! -e /media ]; then + mkdir /media + fi + ;; +esac diff --git a/sysutils/hal/Makefile b/sysutils/hal/Makefile index 8b5db349ae0..a6175a25db3 100644 --- a/sysutils/hal/Makefile +++ b/sysutils/hal/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.33 2009/01/25 16:20:36 tron Exp $ +# $NetBSD: Makefile,v 1.34 2009/02/28 14:00:23 ahoka Exp $ DISTNAME= hal-0.5.11 -PKGREVISION= 20 +PKGREVISION= 21 CATEGORIES= sysutils MASTER_SITES= http://hal.freedesktop.org/releases/ EXTRACT_SUFX= .tar.bz2 |