2000-07-03 22:17:52 -04:00
|
|
|
# $OpenBSD: Makefile,v 1.41 2000/07/04 02:17:54 krw Exp $
|
1999-03-20 23:04:24 -05:00
|
|
|
# $FreeBSD: Makefile,v 1.17 1998/03/28 14:12:55 steve Exp $
|
1997-12-02 23:05:23 -05:00
|
|
|
|
2000-06-30 02:01:26 -04:00
|
|
|
DISTNAME= lesstif-0.91.3
|
1997-12-02 23:05:23 -05:00
|
|
|
CATEGORIES= x11
|
2000-07-03 22:17:52 -04:00
|
|
|
NEED_VERSION= 1.310
|
2000-06-30 02:01:26 -04:00
|
|
|
MASTER_SITES= ftp://ftp.lesstif.org/pub/hungry/lesstif/srcdist/ \
|
|
|
|
ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/ \
|
|
|
|
ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/lesstif/srcdist/
|
1999-02-20 23:26:09 -05:00
|
|
|
|
1999-03-20 23:04:24 -05:00
|
|
|
MAINTAINER= brad@openbsd.org
|
1997-12-02 23:05:23 -05:00
|
|
|
|
2000-03-11 20:11:48 -05:00
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
PERMIT_DISTFILES_FTP= Yes
|
2000-02-12 03:02:07 -05:00
|
|
|
|
1999-06-14 02:23:23 -04:00
|
|
|
SEPARATE_BUILD= concurrent
|
2000-06-14 10:08:07 -04:00
|
|
|
CONFIGURE_STYLE= gnu
|
1999-03-20 23:04:24 -05:00
|
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
1999-12-18 14:41:39 -05:00
|
|
|
CONFIGURE_ARGS+=--enable-static --enable-production --enable-build-12 \
|
|
|
|
--disable-build-20 --disable-build-Xbae --disable-build-Xlt \
|
|
|
|
--disable-debug --with-editres
|
1999-09-13 17:28:37 -04:00
|
|
|
|
1997-12-02 23:05:23 -05:00
|
|
|
.if defined(HAVE_MOTIF)
|
2000-03-11 20:11:48 -05:00
|
|
|
IS_INTERACTIVE= Yes
|
1999-12-18 14:41:39 -05:00
|
|
|
|
1998-06-02 16:51:48 -04:00
|
|
|
pre-install:
|
1999-12-18 14:41:39 -05:00
|
|
|
@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) ==> "
|
1997-12-02 23:05:23 -05:00
|
|
|
@(read ans; \
|
|
|
|
case x"$$ans" in \
|
|
|
|
xy*|xY*) \
|
|
|
|
return 0; \
|
|
|
|
;; \
|
|
|
|
*) \
|
1999-12-18 14:41:39 -05:00
|
|
|
echo "Okay, I won't install it then...."; \
|
|
|
|
echo "(Don't worry about the following \"*** Error code 1\"s)"; \
|
1997-12-02 23:05:23 -05:00
|
|
|
return 1; \
|
|
|
|
;; \
|
|
|
|
esac)
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|