diff options
author | obrien <obrien@FreeBSD.org> | 1997-01-25 09:09:03 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-01-25 09:09:03 +0000 |
commit | d8284b42e8e9dcdb3af3b21f5ad2e47d4161106f (patch) | |
tree | 6d1354dd991da7883b761ce084f3f7153f7c5f90 /devel/xwpe/Makefile | |
parent | c307c445e0deed25235e2f27bd21b0230f425867 (diff) | |
download | FreeBSD-ports-d8284b42e8e9dcdb3af3b21f5ad2e47d4161106f.zip FreeBSD-ports-d8284b42e8e9dcdb3af3b21f5ad2e47d4161106f.tar.gz |
xwpe is a X-window programming environment designed for UNIX systems.
It is similar to 'Borland C++' MS-DOS programming IDE environment.
There is both a curses and X11 interface.
Note: there are both English and German language version of the manpages,
and helpfiles. The German language version will be installed if
"GERMAN_LANG" is set during ``make install'' of the port.
Diffstat (limited to 'devel/xwpe/Makefile')
-rw-r--r-- | devel/xwpe/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/devel/xwpe/Makefile b/devel/xwpe/Makefile new file mode 100644 index 0000000..bc55859 --- /dev/null +++ b/devel/xwpe/Makefile @@ -0,0 +1,43 @@ +# ex:ts=8 +# Ports collection makefile for: xwpe +# Version required: 1.6.2 +# Date created: Fri Jan 24, 1997 +# Whom: David O'Brien (obrien@FreeBSD.org) +# +# $Id: Makefile,v 1.5 1996/12/01 01:23:12 obrien Exp $ +# + +DISTNAME= xwpe-1.4.2 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + ftp://ftp.uni-hannover.de/pub/mirror/linux-distrib/apps/editors/ +MASTER_SITE_SUBDIR= apps/editors +EXTRACT_SUFX= .tgz + +MAINTAINER= obrien@NUXI.com + +# LD_LIBRARY_PATH is to deal with a braindead libX11.a search in configure +# (once again author assumes too many Linux'isms) +# it is not exptected to be set at runtime. +MAKE_ENV+= LD_LIBRARY_PATH="${X11BASE}/lib" +GNU_CONFIGURE= yes +CONFIGURE_ENV+= LD_LIBRARY_PATH="${X11BASE}/lib" +USE_GMAKE= yes +ALL_TARGET= +.if defined(GERMAN_LANG) +INSTALL_TARGET= install_german +.endif +MAN1= xwpe.1 xwe.1 wpe.1 we.1 + +post-install: + @strip ${PREFIX}/bin/xwpe +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/xwpe +.if defined(GERMAN_LANG) + ${INSTALL_DATA} ${WRKSRC}/xwpe_gr.doc ${PREFIX}/share/doc/xwpe/xwpe.doc +.else + ${INSTALL_DATA} ${WRKSRC}/xwpe_eng.doc ${PREFIX}/share/doc/xwpe/xwpe.doc +.endif +.endif + +.include <bsd.port.mk> |