1997-01-09 09:07:31 +00:00
|
|
|
# New ports collection makefile for: lesstif
|
|
|
|
# Version required: 0.71
|
|
|
|
# Date created: December 10, 1996
|
|
|
|
# Whom: 1wardd@airmail.net
|
|
|
|
#
|
1997-02-16 15:08:29 +00:00
|
|
|
# $Id: Makefile,v 1.1.1.1 1997/01/09 09:07:30 asami Exp $
|
1997-01-09 09:07:31 +00:00
|
|
|
#
|
|
|
|
|
1997-02-16 15:08:29 +00:00
|
|
|
PREFIX=/local/lesstif
|
|
|
|
|
|
|
|
DISTNAME= lesstif-0.76
|
1997-01-09 09:07:31 +00:00
|
|
|
CATEGORIES= x11
|
|
|
|
MASTER_SITES= ftp://ftp.hungry.com/pub/hungry/lesstif/
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_X11= yes
|
|
|
|
# change this and remove the strip statement in post-install for debugging
|
|
|
|
CONFIGURE_ENV= CCFLAGS="-O -pipe"
|
|
|
|
|
|
|
|
.if defined(HAVE_MOTIF)
|
|
|
|
IS_INTERACTIVE= yes
|
|
|
|
pre-fetch:
|
|
|
|
@echo "***********************************************************"
|
|
|
|
@echo "* W a r n i n g *"
|
|
|
|
@echo "* This port will overwrite your Motif installation. *"
|
|
|
|
@echo "***********************************************************"
|
|
|
|
@echo -n "Is this ok? (y/n) ==> "
|
|
|
|
@(read ans; \
|
|
|
|
case x"$$ans" in \
|
|
|
|
xy*|xY*) \
|
|
|
|
return 0; \
|
|
|
|
;; \
|
|
|
|
*) \
|
|
|
|
echo "Okay, I won't install it then...."; \
|
|
|
|
echo "(Don't worry about the following \"*** Error code 1\"s)"; \
|
|
|
|
return 1; \
|
|
|
|
;; \
|
|
|
|
esac)
|
|
|
|
.endif
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
${MKDIR} ${PREFIX}/lib/X11/mwm
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/clients/mwm/system.mwmrc \
|
|
|
|
${PREFIX}/lib/X11/mwm
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/clients/mwm/alt.map ${PREFIX}/lib/X11/mwm
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/clients/mwm/Mwm \
|
|
|
|
${PREFIX}/lib/X11/app-defaults/Mwm
|
1997-02-16 15:08:29 +00:00
|
|
|
/usr/bin/strip ${PREFIX}/lib/libXm.so.0.76 ${PREFIX}/lib/libMrm.so.0.76
|
1997-01-09 09:07:31 +00:00
|
|
|
/sbin/ldconfig -m ${PREFIX}/lib
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|