diff options
author | miwi <miwi@FreeBSD.org> | 2008-11-22 05:15:49 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-11-22 05:15:49 +0800 |
commit | e08bb7fdb7a4feff965eea3478ed5a12de4b690d (patch) | |
tree | 08c77b2d8c9b0b75541dee868c3ae3616c2e21c9 /sysutils/spindown | |
parent | 360c21fe8c0124b9f8f3190afbcc86c1a106029d (diff) | |
download | freebsd-ports-gnome-e08bb7fdb7a4feff965eea3478ed5a12de4b690d.tar.gz freebsd-ports-gnome-e08bb7fdb7a4feff965eea3478ed5a12de4b690d.tar.zst freebsd-ports-gnome-e08bb7fdb7a4feff965eea3478ed5a12de4b690d.zip |
SCSI / firewire harddrive spindown daemon
This is a small program for handling automated spinning down of
SCSI harddrives. With SCSI devices it is not as common to spindown
for power management purposes as for ATA however it might be required
to spin down a disk contained in a firewire enclosure for instance.
WWW: http://www.noresult.net/freebsd/spindown/
PR: ports/128581
Submitted by: Arjan van der Velde <noresult at xs4all.nl>
Diffstat (limited to 'sysutils/spindown')
-rw-r--r-- | sysutils/spindown/Makefile | 24 | ||||
-rw-r--r-- | sysutils/spindown/distinfo | 3 | ||||
-rw-r--r-- | sysutils/spindown/pkg-descr | 8 |
3 files changed, 35 insertions, 0 deletions
diff --git a/sysutils/spindown/Makefile b/sysutils/spindown/Makefile new file mode 100644 index 000000000000..250aa44075e1 --- /dev/null +++ b/sysutils/spindown/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: spindown +# Date created: 4 november 2008 +# Whom: Arjan van der Velde <noresult@xs4all.nl> +# +# $FreeBSD$ +# + +PORTNAME= spindown +PORTVERSION= 0.2a +CATEGORIES= sysutils +MASTER_SITES= http://www.noresult.net/freebsd/spindown/ + +MAINTAINER= noresult@noresult.net +COMMENT= SCSI/firewire harddrive spindown daemon + +WRKSRC= ${WRKDIR}/${PORTNAME} + +PLIST_FILES= sbin/spindown etc/rc.d/spindown + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/spindown ${PREFIX}/sbin + ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/spindown ${PREFIX}/etc/rc.d + +.include <bsd.port.mk> diff --git a/sysutils/spindown/distinfo b/sysutils/spindown/distinfo new file mode 100644 index 000000000000..09bd56279110 --- /dev/null +++ b/sysutils/spindown/distinfo @@ -0,0 +1,3 @@ +MD5 (spindown-0.2a.tar.gz) = 7a26e5f532a4afa9e599e7973c5f80eb +SHA256 (spindown-0.2a.tar.gz) = 8720031437610f10bdf3da4ab7b7d07161639ac0896261881e94be1eeb0ff9d3 +SIZE (spindown-0.2a.tar.gz) = 7584 diff --git a/sysutils/spindown/pkg-descr b/sysutils/spindown/pkg-descr new file mode 100644 index 000000000000..112dce33c5bd --- /dev/null +++ b/sysutils/spindown/pkg-descr @@ -0,0 +1,8 @@ +SCSI / firewire harddrive spindown daemon + +This is a small program for handling automated spinning down of +SCSI harddrives. With SCSI devices it is not as common to spindown +for power management purposes as for ATA however it might be required +to spin down a disk contained in a firewire enclosure for instance. + +WWW: http://www.noresult.net/freebsd/spindown/ |