Index: head/sysutils/agedu/Makefile =================================================================== --- head/sysutils/agedu/Makefile (revision 445223) +++ head/sysutils/agedu/Makefile (revision 445224) @@ -1,25 +1,25 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= agedu PORTVERSION= 20160920 DISTVERSIONSUFFIX= .853cea9 CATEGORIES= sysutils MASTER_SITES= LOCAL/sunpoet \ - http://www.chiark.greenend.org.uk/~sgtatham/${PORTNAME}/ + https://www.chiark.greenend.org.uk/~sgtatham/${PORTNAME}/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Unix utility for tracking down wasted disk space LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE GNU_CONFIGURE= yes PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz post-patch: @${REINPLACE_CMD} -e 's|HOST_NAME_MAX|_POSIX_&|' ${WRKSRC}/httpd.c .include Index: head/sysutils/agedu/pkg-descr =================================================================== --- head/sysutils/agedu/pkg-descr (revision 445223) +++ head/sysutils/agedu/pkg-descr (revision 445224) @@ -1,22 +1,22 @@ Unix provides the standard du utility, which scans your disk and tells you which directories contain the largest amounts of data. That can help you narrow your search to the things most worth deleting. However, that only tells you what's big. What you really want to know is what's too big. By itself, du won't let you distinguish between data that's big because you're doing something that needs it to be big, and data that's big because you unpacked it once and forgot about it. Most Unix file systems, in their default mode, helpfully record when a file was last accessed. Not just when it was written or modified, but when it was even read. So if you generated a large amount of data years ago, forgot to clean it up, and have never used it since, then it ought in principle to be possible to use those last-access time stamps to tell the difference between that and a large amount of data you're still using regularly. agedu is a program which does this. It does basically the same sort of disk scan as du, but it also records the last-access times of everything it scans. Then it builds an index that lets it efficiently generate reports giving a summary of the results for each subdirectory, and then it produces those reports on demand. -WWW: http://www.chiark.greenend.org.uk/~sgtatham/agedu/ +WWW: https://www.chiark.greenend.org.uk/~sgtatham/agedu/