aboutsummaryrefslogtreecommitdiff
path: root/sysutils/smartmontools-devel
diff options
context:
space:
mode:
authorSergei Kolobov <sergei@FreeBSD.org>2003-12-05 14:12:04 +0000
committerSergei Kolobov <sergei@FreeBSD.org>2003-12-05 14:12:04 +0000
commitfab0d8e4e60ee5bc3e72b98d5fab9638e6e7deb4 (patch)
treef7f507505f63f4f61d9487a0b5f384b42814291c /sysutils/smartmontools-devel
parent3642518e98df412a1968585e31fce11dbe96d6ae (diff)
downloadports-fab0d8e4e60ee5bc3e72b98d5fab9638e6e7deb4.tar.gz
ports-fab0d8e4e60ee5bc3e72b98d5fab9638e6e7deb4.zip
- Update to 5.26
- Delete patches integrated into upstream PR: 59809 Submitted by: Robin Breathe <robin@isometry.net> Approved by: maintainer
Notes
Notes: svn path=/head/; revision=95127
Diffstat (limited to 'sysutils/smartmontools-devel')
-rw-r--r--sysutils/smartmontools-devel/Makefile3
-rw-r--r--sysutils/smartmontools-devel/distinfo2
-rw-r--r--sysutils/smartmontools-devel/files/patch-knowndrives.c10
-rw-r--r--sysutils/smartmontools-devel/files/patch-os_freebsd.c50
-rw-r--r--sysutils/smartmontools-devel/pkg-message2
5 files changed, 3 insertions, 64 deletions
diff --git a/sysutils/smartmontools-devel/Makefile b/sysutils/smartmontools-devel/Makefile
index 6ee7a6cb96a6..492e3a9e6e43 100644
--- a/sysutils/smartmontools-devel/Makefile
+++ b/sysutils/smartmontools-devel/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= smartmontools
-PORTVERSION= 5.22
-PORTREVISION= 1
+PORTVERSION= 5.26
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/sysutils/smartmontools-devel/distinfo b/sysutils/smartmontools-devel/distinfo
index a56aca755dd7..5f4044862d6c 100644
--- a/sysutils/smartmontools-devel/distinfo
+++ b/sysutils/smartmontools-devel/distinfo
@@ -1 +1 @@
-MD5 (smartmontools-5.22.tar.gz) = 9a6dfaff993f88f20af1b9a16cd3fd21
+MD5 (smartmontools-5.26.tar.gz) = fc2cb32e926b25afa24f450f9a48fbb1
diff --git a/sysutils/smartmontools-devel/files/patch-knowndrives.c b/sysutils/smartmontools-devel/files/patch-knowndrives.c
deleted file mode 100644
index 31472c3a0a57..000000000000
--- a/sysutils/smartmontools-devel/files/patch-knowndrives.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- knowndrives.c.orig Sat Nov 1 02:33:08 2003
-+++ knowndrives.c Sat Nov 1 02:33:20 2003
-@@ -17,6 +17,7 @@
- *
- */
-
-+#include <sys/types.h>
- #include <stdio.h>
- #include <regex.h>
- #include "atacmds.h"
diff --git a/sysutils/smartmontools-devel/files/patch-os_freebsd.c b/sysutils/smartmontools-devel/files/patch-os_freebsd.c
deleted file mode 100644
index f7fb6ba13752..000000000000
--- a/sysutils/smartmontools-devel/files/patch-os_freebsd.c
+++ /dev/null
@@ -1,50 +0,0 @@
---- os_freebsd.c.orig Sat Nov 1 02:34:37 2003
-+++ os_freebsd.c Sat Nov 1 02:40:19 2003
-@@ -402,13 +402,17 @@
-
- if (cam_send_ccb(cam_dev,ccb) < 0) {
- warn("error sending SCSI ccb");
-+ #if __FreeBSD_version > 500000
- cam_error_print(cam_dev,ccb,CAM_ESF_ALL,CAM_EPF_ALL,stderr);
-+ #endif
- cam_freeccb(ccb);
- return -1;
- }
-
- if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
-+ #if __FreeBSD_version > 500000
- cam_error_print(cam_dev,ccb,CAM_ESF_ALL,CAM_EPF_ALL,stderr);
-+ #endif
- cam_freeccb(ccb);
- return -1;
- }
-@@ -426,8 +430,10 @@
- cam_close_device(cam_dev);
-
- if (report > 0) {
-+ int trunc;
-+
- pout(" status=0\n");
-- int trunc = (iop->dxfer_len > 256) ? 1 : 0;
-+ trunc = (iop->dxfer_len > 256) ? 1 : 0;
-
- pout(" Incoming data, len=%d%s:\n", (int)iop->dxfer_len,
- (trunc ? " [only first 256 bytes shown]" : ""));
-@@ -444,6 +450,9 @@
-
-
- static int get_ata_channel_unit ( const char* name, int* unit, int* dev) {
-+#ifndef ATAREQUEST
-+ return -1;
-+#else
- // there is no direct correlation between name 'ad0, ad1, ...' and
- // channel/unit number. So we need to iterate through the possible
- // channels and check each unit to see if we match names
-@@ -483,6 +492,7 @@
- return -1;
- else
- return 0;
-+#endif
- }
-
-
diff --git a/sysutils/smartmontools-devel/pkg-message b/sysutils/smartmontools-devel/pkg-message
index 0a0870090abb..21c0077d3243 100644
--- a/sysutils/smartmontools-devel/pkg-message
+++ b/sysutils/smartmontools-devel/pkg-message
@@ -10,5 +10,5 @@ A sample configuration file has been installed as ${PREFIX}/etc/smartd.conf.samp
Copy this file to ${PREFIX}/etc/smartd.conf and edit appropriately
To have smartd start at boot
- cp ${PREFIX}/etc/rc.d/smartd.sample ${PREFIX}/etc/rc.d/smartd.sh
+ cp ${PREFIX}/etc/rc.d/smartd.sh.sample ${PREFIX}/etc/rc.d/smartd.sh
chmod 555 ${PREFIX}/etc/rc.d/smartd.sh