diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2017-09-10 21:08:59 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2017-09-10 21:08:59 +0800 |
commit | 12f1b60e8107ea34c9c91749ddd2a30765774863 (patch) | |
tree | 184d382d820686839299d29e5b00afdb0eb5d597 | |
parent | 4f5bc2fb108d6e477d6f8dabb652a4d56c56dad4 (diff) | |
download | freebsd-ports-gnome-12f1b60e8107ea34c9c91749ddd2a30765774863.tar.gz freebsd-ports-gnome-12f1b60e8107ea34c9c91749ddd2a30765774863.tar.zst freebsd-ports-gnome-12f1b60e8107ea34c9c91749ddd2a30765774863.zip |
Simplify Makefile
-rw-r--r-- | sysutils/dmidecode/Makefile | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/sysutils/dmidecode/Makefile b/sysutils/dmidecode/Makefile index ff9ab6ab882b..ba2af87a4c16 100644 --- a/sysutils/dmidecode/Makefile +++ b/sysutils/dmidecode/Makefile @@ -21,25 +21,19 @@ MAKE_ENV= DOCSDIR="${DOCSDIR}" USES= tar:xz PLIST_FILES= etc/periodic/daily/dmidecode \ + man/man8/biosdecode.8.gz \ man/man8/dmidecode.8.gz \ - sbin/dmidecode -PORTDOCS= AUTHORS CHANGELOG README -SUB_FILES= dmidecode - -post-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily - ${INSTALL_SCRIPT} ${WRKDIR}/dmidecode \ - ${STAGEDIR}${PREFIX}/etc/periodic/daily - -.include <bsd.port.pre.mk> - -.if ${ARCH} == "amd64" || ${ARCH} == "i386" -PLIST_FILES+= man/man8/biosdecode.8.gz \ man/man8/ownership.8.gz \ man/man8/vpddecode.8.gz \ sbin/biosdecode \ + sbin/dmidecode \ sbin/ownership \ sbin/vpddecode -.endif +PORTDOCS= AUTHORS CHANGELOG README +SUB_FILES= dmidecode + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily/ + ${INSTALL_SCRIPT} ${WRKDIR}/dmidecode ${STAGEDIR}${PREFIX}/etc/periodic/daily/ -.include <bsd.port.post.mk> +.include <bsd.port.mk> |