diff options
author | ahoka <ahoka> | 2009-02-28 14:00:23 +0000 |
---|---|---|
committer | ahoka <ahoka> | 2009-02-28 14:00:23 +0000 |
commit | 9012f3139c17f0145a59c9f4f83158abf7b9a6bd (patch) | |
tree | e5908a28315f869cf2720bab172caa0a81dc9c65 /sysutils/hal | |
parent | ccc005e1a7da3e47e8f6d9829eb5a835aa90d987 (diff) | |
download | pkgsrc-9012f3139c17f0145a59c9f4f83158abf7b9a6bd.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 |