head	1.4;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.4
	RELEASE_8_2_0:1.4
	RELEASE_6_EOL:1.4
	RELEASE_8_1_0:1.4
	RELEASE_7_3_0:1.4
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.3
	RELEASE_6_2_0:1.2
	RELEASE_6_1_0:1.2
	RELEASE_5_5_0:1.2
	RELEASE_6_0_0:1.2
	RELEASE_5_4_0:1.2
	RELEASE_4_11_0:1.2
	RELEASE_5_3_0:1.2
	RELEASE_4_10_0:1.2
	RELEASE_5_2_1:1.2
	RELEASE_5_2_0:1.2
	RELEASE_4_9_0:1.2
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.2
	RELEASE_4_7_0:1.2
	RELEASE_4_6_2:1.2
	RELEASE_4_6_1:1.2
	RELEASE_4_6_0:1.2
	RELEASE_5_0_DP1:1.2
	RELEASE_4_5_0:1.2
	RELEASE_4_4_0:1.2
	RELEASE_4_3_0:1.2
	RELEASE_4_2_0:1.2
	RELEASE_4_1_1:1.2
	RELEASE_4_1_0:1.2
	RELEASE_3_5_0:1.2
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.2
	RELEASE_3_1_0:1.2
	RELEASE_2_2_8:1.2
	RELEASE_3_0_0:1.2
	RELEASE_2_2_7:1.2
	RELEASE_2_2_6:1.2
	RELEASE_2_2_5:1.2
	SR_2_3_1:1.1.1.1
	shevchenko:1.1.1;
locks; strict;
comment	@# @;


1.4
date	2008.04.19.17.51.37;	author miwi;	state Exp;
branches;
next	1.3;

1.3
date	2006.11.30.17.36.05;	author rafan;	state Exp;
branches;
next	1.2;

1.2
date	97.06.29.09.29.21;	author obrien;	state Exp;
branches;
next	1.1;

1.1
date	97.06.26.11.28.36;	author max;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	97.06.26.11.28.36;	author max;	state Exp;
branches;
next	;


desc
@@


1.4
log
@- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
	Dmitry Marakasov, Chess Griffin, beech@@, dinoex, rafan, gahr,
	ehaupt, nox, itetcu, flz, pav

PR:		116263
Tested on:	pointyhat
Approved by:	portmgr (pav)
@
text
@--- configure.orig	Wed Dec 13 13:46:18 1995
+++ configure	Sun Jun 29 02:25:13 1997
@@@@ -77,6 +77,7 @@@@
 XINCL=/usr/include
 if [ -d /usr/X11/include/X11 ]; then XINCL=/usr/X11/include; fi
 if [ -d /usr/openwin/include/X11 ]; then XINCL=/usr/openwin/include; fi
+if [ -d ${LOCALBASE}/include/X11 ]; then XINCL=${LOCALBASE}/include; fi
 if [ ! -d $XINCL/X11 ]; then XINCL=; fi
 
 XTANGO=/home/sr/xtango/include
@@@@ -125,6 +126,19 @@@@
     LIBM="-lm -lc"
 fi
 
+# on FreeBSD, set X11R6 library
+if [ "`(uname -s) 2>/dev/null`" = "FreeBSD" ]; then
+    LIBR="-L${LOCALBASE}/lib"
+fi
+# on OpenBSD, set X11R6 library
+if [ "`(uname -s) 2>/dev/null`" = "OpenBSD" ]; then
+    LIBR="-L${LOCALBASE}/lib"
+fi
+# on NetBSD, set X11R6 library
+if [ "`(uname -s) 2>/dev/null`" = "NetBSD" ]; then
+    LIBR="-L${LOCALBASE}/lib"
+fi
+
 # if this looks like an Arizona system, use our srmap file
 if grep -s '^gmt:[^:]*:0*28:0*46:' /etc/passwd >/dev/null; then
     SRMAP=srmap.az
@@@@ -174,11 +188,27 @@@@
 	    MAN5=/usr/man/local/man5
 	    MANEXT=1
 	else
+	  if [ -d /usr/local/man ]; then
+             MAN1=/usr/local/man/man1
+             MAN3=/usr/local/man/man3
+             MAN5=/usr/local/man/man5
+	     MANEXT=1
+	  else
 	    MAN1=/usr/man/manl
 	    MAN3=/usr/man/manl
 	    MAN5=/usr/man/manl
 	    MANEXT=l
+	  fi
 	fi
+	;;
+    prefix)
+	if [ "X${PREFIX}" = "X" ]; then PREFIX=/usr/local ; fi
+	SRCMD=${PREFIX}/bin
+	SRLIB=${PREFIX}/lib/sr
+	MAN1=${PREFIX}/man/man1
+	MAN3=${PREFIX}/man/man3
+	MAN5=${PREFIX}/man/man5
+	    MANEXT=1
 	;;
     optlocal)
 	SRCMD=/opt/local/bin
@


1.3
log
@- Respect X11BASE

Reported by:	pointyhat
@
text
@d7 1
a7 1
+if [ -d ${X11BASE}/include/X11 ]; then XINCL=${X11BASE}/include; fi
d17 1
a17 1
+    LIBR="-L${X11BASE}/lib"
d21 1
a21 1
+    LIBR="-L${X11BASE}/lib"
d25 1
a25 1
+    LIBR="-L${X11BASE}/lib"
@


1.2
log
@Add support for {Open,Net}BSD
@
text
@d7 1
a7 1
+if [ -d /usr/X11R6/include/X11 ]; then XINCL=/usr/X11R6/include; fi
d17 1
a17 1
+    LIBR="-L/usr/X11R6/lib"
d21 1
a21 1
+    LIBR="-L/usr/X11R6/lib"
d25 1
a25 1
+    LIBR="-L/usr/X11R6/lib"
@


1.1
log
@Initial revision
@
text
@d1 2
a2 2
--- configure.orig	Thu Dec 14 06:46:18 1995
+++ configure	Thu Jun 26 03:00:03 1997
d11 1
a11 1
@@@@ -125,6 +126,11 @@@@
d19 8
d31 1
a31 1
@@@@ -174,11 +180,27 @@@@
@


1.1.1.1
log
@New port, SR:
A parallel language "Synchronization Resources"
Submitted by:	Ruslan Shevchenko <rssh@@satori.ipri.kiev.ua>
PR:		3758
@
text
@@
