From c4921bb118d08147cb4b290e67c4cd8bb44d96a3 Mon Sep 17 00:00:00 2001 From: vermaden Date: Fri, 15 Jun 2018 10:16:40 +0200 Subject: [PATCH] Cleanup. --- sysutils/automount.shar | 99 ---------------------------------- sysutils/automount/Makefile | 46 ---------------- sysutils/automount/distinfo | 2 - sysutils/automount/pkg-descr | 6 --- sysutils/automount/pkg-install | 16 ------ 5 files changed, 169 deletions(-) delete mode 100644 sysutils/automount.shar delete mode 100644 sysutils/automount/Makefile delete mode 100644 sysutils/automount/distinfo delete mode 100644 sysutils/automount/pkg-descr delete mode 100644 sysutils/automount/pkg-install diff --git a/sysutils/automount.shar b/sysutils/automount.shar deleted file mode 100644 index 10dee35..0000000 --- a/sysutils/automount.shar +++ /dev/null @@ -1,99 +0,0 @@ -# This is a shell archive. Save it in a file, remove anything before -# this line, and then unpack it by entering "sh file". Note, it may -# create directories; files and directories will be owned by you and -# have default permissions. -# -# This archive contains: -# -# automount -# automount/distinfo -# automount/Makefile -# automount/pkg-descr -# automount/pkg-install -# -echo c - automount -mkdir -p automount > /dev/null 2>&1 -echo x - automount/distinfo -sed 's/^X//' >automount/distinfo << 'f9168fc754e2bffcb12d5eb7f25848ec' -XSHA256 (automount-1.4.3.tar.gz) = 658d94c0a0bc862e0a53a5ee384352f039c671e4ea42dc6447c0faa701281f70 -XSIZE (automount-1.4.3.tar.gz) = 4386 -f9168fc754e2bffcb12d5eb7f25848ec -echo x - automount/Makefile -sed 's/^X//' >automount/Makefile << 'a684d750ccdf9f4d6ffa6a1936b8d432' -X# Created by: Slawomir Wojciech Wojtczak -X# $FreeBSD: sysutils/automount/Makefile 313387 2013-03-04 02:05:25Z bdrewery $ -X -XPORTNAME= automount -XPORTVERSION= 1.4.2 -XCATEGORIES= sysutils -XMASTER_SITES= https://raw.github.com/vermaden/automount/master/ \ -X LOCAL/bdrewery/${PORTNAME}/ -X -XMAINTAINER= vermaden@interia.pl -XCOMMENT= FreeBSD's devd(8) based automount solution -X -XLICENSE= BSD -X -XPLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample -X -XNO_BUILD= yes -X -XOPTIONS_DEFINE= NTFS3G EXT4 EXFAT -XOPTIONS_DEFAULT= NTFS3G EXT4 EXFAT -XNTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE -XEXT4_DESC= Support EXT4 filesystem -XEXFAT_DESC= Support Microsoft exFAT filesystem -X -X.include -X -X.if ${PORT_OPTIONS:MNTFS3G} -XRUN_DEPENDS+= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs -X.endif -X -X.if ${PORT_OPTIONS:MEXT4} -XRUN_DEPENDS+= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse -X.endif -X -X.if ${PORT_OPTIONS:MEXFAT} -XRUN_DEPENDS+= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat -X.endif -X -Xdo-install: -X ${INSTALL_SCRIPT} ${WRKSRC}/automount ${PREFIX}/sbin -X ${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${PREFIX}/etc/devd/automount_devd.conf -X ${INSTALL_DATA} ${WRKSRC}/automount.conf.sample ${PREFIX}/etc/automount.conf.sample -X ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -X -X.include -X -a684d750ccdf9f4d6ffa6a1936b8d432 -echo x - automount/pkg-descr -sed 's/^X//' >automount/pkg-descr << 'beeed37ba9f50e251d50bf9bd7dcb079' -Xautomount is a devd(8) based automounter for FreeBSD. -X -XIt supports most popular file systems: -XNTFS/MSDOS/exFAT/EXT2/EXT3/EXT4/UFS -X -XWWW: https://github.com/vermaden/automount/ -beeed37ba9f50e251d50bf9bd7dcb079 -echo x - automount/pkg-install -sed 's/^X//' >automount/pkg-install << '251e9ad33f5651c05228156a36207e92' -X#!/bin/sh -X -Xcase ${2} in -X (POST-INSTALL) -X /etc/rc.d/devd restart -X echo -X echo -X echo "Check /usr/local/sbin/automount --help for available options." -X echo -X echo -X ;; -X (PRE-INSTALL) -X : -X ;; -Xesac -X -251e9ad33f5651c05228156a36207e92 -exit - diff --git a/sysutils/automount/Makefile b/sysutils/automount/Makefile deleted file mode 100644 index 9b62e24..0000000 --- a/sysutils/automount/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Created by: Slawomir Wojciech Wojtczak -# $FreeBSD: sysutils/automount/Makefile 313387 2013-03-04 02:05:25Z bdrewery $ - -PORTNAME= automount -PORTVERSION= 1.4.2 -CATEGORIES= sysutils -MASTER_SITES= https://raw.github.com/vermaden/automount/master/ \ - LOCAL/bdrewery/${PORTNAME}/ - -MAINTAINER= vermaden@interia.pl -COMMENT= FreeBSD's devd(8) based automount solution - -LICENSE= BSD - -PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample - -NO_BUILD= yes - -OPTIONS_DEFINE= NTFS3G EXT4 EXFAT -OPTIONS_DEFAULT= NTFS3G EXT4 EXFAT -NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE -EXT4_DESC= Support EXT4 filesystem -EXFAT_DESC= Support Microsoft exFAT filesystem - -.include - -.if ${PORT_OPTIONS:MNTFS3G} -RUN_DEPENDS+= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs -.endif - -.if ${PORT_OPTIONS:MEXT4} -RUN_DEPENDS+= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse -.endif - -.if ${PORT_OPTIONS:MEXFAT} -RUN_DEPENDS+= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat -.endif - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/automount ${PREFIX}/sbin - ${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${PREFIX}/etc/devd/automount_devd.conf - ${INSTALL_DATA} ${WRKSRC}/automount.conf.sample ${PREFIX}/etc/automount.conf.sample - ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - -.include - diff --git a/sysutils/automount/distinfo b/sysutils/automount/distinfo deleted file mode 100644 index 8e53854..0000000 --- a/sysutils/automount/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (automount-1.4.3.tar.gz) = 658d94c0a0bc862e0a53a5ee384352f039c671e4ea42dc6447c0faa701281f70 -SIZE (automount-1.4.3.tar.gz) = 4386 diff --git a/sysutils/automount/pkg-descr b/sysutils/automount/pkg-descr deleted file mode 100644 index 36c1f39..0000000 --- a/sysutils/automount/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -automount is a devd(8) based automounter for FreeBSD. - -It supports most popular file systems: -NTFS/MSDOS/exFAT/EXT2/EXT3/EXT4/UFS - -WWW: https://github.com/vermaden/automount/ diff --git a/sysutils/automount/pkg-install b/sysutils/automount/pkg-install deleted file mode 100644 index e9524fb..0000000 --- a/sysutils/automount/pkg-install +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -case ${2} in - (POST-INSTALL) - /etc/rc.d/devd restart - echo - echo - echo "Check /usr/local/sbin/automount --help for available options." - echo - echo - ;; - (PRE-INSTALL) - : - ;; -esac -