diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-11-08 06:33:42 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-11-08 06:33:42 +0800 |
commit | 3f277e4a953e5e3cfcba1d855cd01a4366e2f100 (patch) | |
tree | 31e6a1b0e6c11fb0830d95ceb0efc0b7f810cb22 | |
parent | 6dead7ee50ffb3660603eafcb657cdcc69fc2960 (diff) | |
download | freebsd-ports-gnome-3f277e4a953e5e3cfcba1d855cd01a4366e2f100.tar.gz freebsd-ports-gnome-3f277e4a953e5e3cfcba1d855cd01a4366e2f100.tar.zst freebsd-ports-gnome-3f277e4a953e5e3cfcba1d855cd01a4366e2f100.zip |
- Remove useless IGNORE for FreeBSD < 9.1
- Fix manpage installation, use MANPREFIX
Approved by: portmgr blanket
-rw-r--r-- | sysutils/jadm/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sysutils/jadm/Makefile b/sysutils/jadm/Makefile index 0810c8d06e4f..de48616d853c 100644 --- a/sysutils/jadm/Makefile +++ b/sysutils/jadm/Makefile @@ -25,13 +25,7 @@ USES= python USE_PYTHON= distutils autoplist PLIST_FILES= man/man8/jadm.8.gz -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 901000 -IGNORE= freeBSD before 9.1 is not supported -.endif - pre-install: - ${CP} ${WRKSRC}/man8/jadm.8 ${STAGEDIR}${PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/man8/jadm.8 ${STAGEDIR}${MANPREFIX}/man/man8 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |