diff options
author | chuckr <chuckr@FreeBSD.org> | 1999-09-22 04:36:58 +0000 |
---|---|---|
committer | chuckr <chuckr@FreeBSD.org> | 1999-09-22 04:36:58 +0000 |
commit | d3a41268dd99d406e9f724c751b8d5cd245257ff (patch) | |
tree | 45ecd81339bd0a3a11e6d87975573f2044d954bb /editors/thoteditor/Makefile | |
parent | 00538e25b33c6f24e0c9e1fabfc3e8fbc76e667f (diff) | |
download | FreeBSD-ports-d3a41268dd99d406e9f724c751b8d5cd245257ff.zip FreeBSD-ports-d3a41268dd99d406e9f724c751b8d5cd245257ff.tar.gz |
This is still badly broken, but this fixes the worst bugs (at least it
gets started, the lib part compiles now). Chief problems were that
the configure script was looking for thot in an archive named Thot, and
the configure script requires all enables/disables, withs/withouts
to be explicitly laid out, else there's a ream of sed errors.
Oh, yeah, the WRKSRC had to be explitly created too.
Diffstat (limited to 'editors/thoteditor/Makefile')
-rw-r--r-- | editors/thoteditor/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/editors/thoteditor/Makefile b/editors/thoteditor/Makefile index 402a2cb..4cf4b3d 100644 --- a/editors/thoteditor/Makefile +++ b/editors/thoteditor/Makefile @@ -21,6 +21,7 @@ DISTFILES= ${THOT_SRC} ${EDITOR_SRC} MAINTAINER= chuckr@FreeBSD.org BROKEN= 'FUBARed' +WRKSRC= $(WRKDIR)/Thot/objects THOT_SRC= thot-src-2.1e.tar.gz EDITOR_SRC= thoteditor-src-2.1e.tar.gz @@ -28,12 +29,17 @@ EDITOR_SRC= thoteditor-src-2.1e.tar.gz EXTRACT_ONLY= ${THOT_SRC} REQUIRES_MOTIF= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-thot --enable-plugin +USE_GMAKE= yes +CONFIGURE_ARGS= --with-thot --enable-plugin --without-insure --without-amaya --disable-java --disable-intr --disable-jit --disable-math --disable-ilu USE_GMAKE= yes ALL_TARGET= all schemas +do-configure: + (cd $(WRKDIR)/Thot/objects;../configure $(CONFIGURE_ARGS)) + post-extract: - (${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${EDITOR_SRC} ${EXTRACT_AFTER_ARGS} -C ${WRKSRC}) + (${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${EDITOR_SRC} ${EXTRACT_AFTER_ARGS} -C ${WRKDIR}/Thot) + (cd $(WRKDIR)/Thot;$(MKDIR) objects) post-install: ${MKDIR} ${PREFIX}/share/thot/doc |