diff options
Diffstat (limited to 'lang/m3gdb/Makefile')
-rw-r--r-- | lang/m3gdb/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lang/m3gdb/Makefile b/lang/m3gdb/Makefile new file mode 100644 index 0000000..2c14e88 --- /dev/null +++ b/lang/m3gdb/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: m3gdb +# Version required: 4.17 +# Date created: 17 February 1999 +# Whom: wagner@luthien.in-berlin.de +# +# $Id$ +# + +DISTNAME= m3gdb-4.17 +CATEGORIES= lang +MASTER_SITES= http://www.freebsd.org/~jdp/distfiles/ + +MAINTAINER= jdp@FreeBSD.ORG + +MAN1= m3gdb.1 +MANCOMPRESSED= yes + +pre-fetch: + @if [ ! -d /usr/src/contrib/gdb ]; then \ + echo "To build this port you must have the FreeBSD" \ + "sources in \"/usr/src\"."; \ + exit 1; \ + fi + +pre-build: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} make depend + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} make libbuild + +.include <bsd.port.mk> |