summaryrefslogtreecommitdiff
path: root/x11/lesstif/Makefile
blob: 29539ae6a61b73f5ffad00d9fa0743b547af691d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# $NetBSD: Makefile,v 1.16 1998/04/15 10:38:54 agc Exp $
# FreeBSD Id: Makefile,v 1.13 1997/09/08 08:34:13 tg Exp
#

DISTNAME=	lesstif-0.83
CATEGORIES=	x11
MASTER_SITES=	ftp://linux.gt.ed.net/pub/linux/libs/lesstif/srcdist/ \
		ftp://ftp.mathematik.th-darmstadt.de/pub/linux/mirrors/misc/lesstif/srcdist/ \
		ftp://ftp.lesstif.org/pub/hungry/lesstif/srcdist/

MAINTAINER=	packages@netbsd.org

GNU_CONFIGURE=  yes
USE_X11=	yes
# change this for debugging
CONFIGURE_ENV=	CCFLAGS="-O -pipe" INSTALL_SCRIPT="${INSTALL_SCRIPT}"

# this is worst case, when you're about to overwrite real Motif with Lesstif
IS_INTERACTIVE=	yes

MAN1=		mwm.1
MAN5=		mwmrc.5

pre-fetch:
	@if [ -d ${X11BASE}/include/Xm ]; then \
		if [ -d ${X11BASE}/lib/X11/lesstif ]; then \
			${ECHO} "Upgrading a previous Lesstif installation"; \
			return 0; \
		fi; \
		${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) \
	fi

post-install:
	${LDCONFIG} || ${TRUE}

.include "../../mk/bsd.pkg.mk"