diff options
author | jlam <jlam@pkgsrc.org> | 2000-12-22 17:26:18 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-12-22 17:26:18 +0000 |
commit | c788cdc7d80be0e4b147aedc81c6017e287a97da (patch) | |
tree | 7508366f1ef7becae93914cbae4785a898754206 /x11/lesstif/Makefile | |
parent | 6968ccff3d613827a8a5f96fee1d0b3614c8fdb5 (diff) | |
download | pkgsrc-c788cdc7d80be0e4b147aedc81c6017e287a97da.tar.gz |
Update lesstif and lesstif12 to version 0.92.6. Make me the maintainer
since I'm most familiar with the hack to include the LessTif X11 config
files. Relevant changes from version 0.91.8:
* Build/Install Uil libs and Headers (and tests) by default.
* Fixed some FontList interfaces to conform to the docs. Might fix
memory leaks as well.
* Ongoing work to use ANSI C89 as much as possible. Drop alternatives
being used (e.g. bcopy() and friends)
* The Motif 2.x Xme() funcs should now all exist in stubs at least; some
had already been "implemented" earlier.
* Build support for a Motif 2.1 compatible tree. This will soon replace
the 2.0 tree.
* Work in progres for creating XmPrint API. (2.1 functionality)
Diffstat (limited to 'x11/lesstif/Makefile')
-rw-r--r-- | x11/lesstif/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/x11/lesstif/Makefile b/x11/lesstif/Makefile index 66dd1e8eb08..a7c3e802d6f 100644 --- a/x11/lesstif/Makefile +++ b/x11/lesstif/Makefile @@ -1,9 +1,7 @@ -# $NetBSD: Makefile,v 1.52 2000/10/23 19:45:05 jlam Exp $ +# $NetBSD: Makefile,v 1.53 2000/12/22 17:26:18 jlam Exp $ # FreeBSD Id: Makefile,v 1.13 1997/09/08 08:34:13 tg Exp # -BUILD_DEPENDS+= lynx:../../www/lynx - CONFIGURE_ARGS+= --disable-build-12 CONFIGURE_ARGS+= --enable-build-20 CONFIGURE_ARGS+= --enable-default-20 @@ -11,12 +9,18 @@ CONFIGURE_ARGS+= --enable-default-20 DEINSTALL_FILE= ${WRKDIR}/DEINSTALL INSTALL_FILE= ${WRKDIR}/INSTALL -post-build: +pre-install: ${SED} -e "s,@LOCALBASE@,${LOCALBASE},g" \ - -e "s,@X11BASE@,${X11BASE},g" \ + -e "s,@CP@,${CP},g" \ + -e "s,@GREP@,${GREP},g" \ + -e "s,@RM@,${RM},g" \ + -e "s,@RMDIR@,${RMDIR},g" \ + -e "s,@TRUE@,${TRUE},g" \ < ${PKGDIR}/DEINSTALL > ${DEINSTALL_FILE} ${SED} -e "s,@LOCALBASE@,${LOCALBASE},g" \ - -e "s,@X11BASE@,${X11BASE},g" \ + -e "s,@CP@,${CP},g" \ + -e "s,@GREP@,${GREP},g" \ + -e "s,@LN@,${LN},g" \ < ${PKGDIR}/INSTALL > ${INSTALL_FILE} post-install: |