diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-07-29 19:50:26 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-07-29 19:50:26 +0800 |
commit | 988d74b6c17064f8e8f45253e24f235d53012823 (patch) | |
tree | d3d38871ae57fb8ab8bbab9bc66f94dba41e8d38 /editors | |
parent | c23fc0270005e0c4926618fd003492111720138f (diff) | |
download | freebsd-ports-gnome-988d74b6c17064f8e8f45253e24f235d53012823.tar.gz freebsd-ports-gnome-988d74b6c17064f8e8f45253e24f235d53012823.tar.zst freebsd-ports-gnome-988d74b6c17064f8e8f45253e24f235d53012823.zip |
Broken on >= 6.0: invalid packing list.
Reported by: pointyhat via krion
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs19/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/emacs19/Makefile b/editors/emacs19/Makefile index a8c3772d457b..3d72909e1866 100644 --- a/editors/emacs19/Makefile +++ b/editors/emacs19/Makefile @@ -39,6 +39,12 @@ CONFIGURE_ARGS= --with-x=no --sharedstatedir=/var/run STRIP= MAN1= emacs.1 etags.1 ctags.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 600000 +BROKEN= "invalid packing list" +.endif + post-install: .for file in emacs-19.34 emacsclient etags ctags b2m ${STRIP_CMD} ${PREFIX}/bin/${file} @@ -51,4 +57,4 @@ post-install: @${MKDIR} ${PREFIX}/etc/rc.d @${INSTALL_SCRIPT} ${FILESDIR}/emacs.sh ${PREFIX}/etc/rc.d -.include <bsd.port.mk> +.include <bsd.port.post.mk> |