diff options
author | John Polstra <jdp@FreeBSD.org> | 1999-09-08 18:02:33 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 1999-09-08 18:02:33 +0000 |
commit | fbeafdb5f9c46ad7b4d3cb8dfa6a1f4a2aa109a5 (patch) | |
tree | 1da077eaba41e48d78d49d4084c2446ec51f551b /lang/m3gdb/Makefile | |
parent | c79e7ed839a9b49b84802b031c0a481a435aa0fe (diff) |
Notes
Diffstat (limited to 'lang/m3gdb/Makefile')
-rw-r--r-- | lang/m3gdb/Makefile | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/lang/m3gdb/Makefile b/lang/m3gdb/Makefile index 6d619dfe8b63..bc8231c89a16 100644 --- a/lang/m3gdb/Makefile +++ b/lang/m3gdb/Makefile @@ -6,24 +6,26 @@ # $FreeBSD$ # -DISTNAME= m3gdb-4.17 -CATEGORIES= lang devel -MASTER_SITES= http://www.freebsd.org/~jdp/distfiles/ +DISTNAME= m3gdb-4.17 +CATEGORIES= lang devel +MASTER_SITES= http://www.freebsd.org/~jdp/distfiles/ +DISTFILES= m3gdb-4.17.tar.gz \ + m3gdb-fbsd-4.17.tar.gz -MAINTAINER= jdp@FreeBSD.org +MAINTAINER= jdp@FreeBSD.org -MAN1= m3gdb.1 -MANCOMPRESSED= yes +MAN1= m3gdb.1 +MANCOMPRESSED= yes +ONLY_FOR_ARCHS= i386 -pre-fetch: - @if [ ! -d /usr/src/contrib/gdb ]; then \ - ${ECHO_MSG} "To build this port you must have the FreeBSD" \ - "sources in \"/usr/src\"."; \ - exit 1; \ - fi +.include <bsd.port.pre.mk> + +.if ${PORTOBJFORMAT} == "aout" +BROKEN= does not support a.out systems +.endif pre-build: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} make depend @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} make libbuild -.include <bsd.port.mk> +.include <bsd.port.post.mk> |