summaryrefslogtreecommitdiff
path: root/lang/gcc34/Makefile
diff options
context:
space:
mode:
authorshannonjr <shannonjr>2004-07-28 12:14:49 +0000
committershannonjr <shannonjr>2004-07-28 12:14:49 +0000
commit7bdf2909ae5a28a809379328615414b886eeddb3 (patch)
treee75c0e007426d03355e3f68d9260a4814c503555 /lang/gcc34/Makefile
parent495a8353cdbee23b3a1805d699d2c5ebb7a8a5ef (diff)
downloadpkgsrc-7bdf2909ae5a28a809379328615414b886eeddb3.tar.gz
1) Renamed patch-libstdc++-v3_configure_host to follow naming convention
2) Removed USE_GCC33ADA option. gcc3-ada may still be used as a bootstrap Ada compiler by specifying ALT_GCC
Diffstat (limited to 'lang/gcc34/Makefile')
-rw-r--r--lang/gcc34/Makefile20
1 files changed, 8 insertions, 12 deletions
diff --git a/lang/gcc34/Makefile b/lang/gcc34/Makefile
index a3bcc328dfc..b47072eeb70 100644
--- a/lang/gcc34/Makefile
+++ b/lang/gcc34/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2004/07/28 07:37:19 shannonjr Exp $
+# $NetBSD: Makefile,v 1.8 2004/07/28 12:14:49 shannonjr Exp $
#
DISTNAME= gcc-${GCC_VERSION}
@@ -103,13 +103,11 @@ PLIST_SRC= ${WRKDIR}/PLIST_DYNAMIC
.if !empty(BUILD_ADA:M[Yy][Ee][Ss])
# Ada bootstrap compiler section
-# An Ada compiler is required to build the Ada compiler. Two
-may be used:
-#USE_GCC33ADA =# Define to use gcc-3.3.x-ada
+# An Ada compiler is required to build the Ada compiler. You
+# may specify:
#USE_GCC34ADA =# Define to use gcc-3.4.x-ada
-# You may also specify the path of a gcc/gnat Ada compiler
-# outside of the pkgsrc system by specifying the full path
-# of the compiler (example) below:
+# Or, you may specify the path of any gcc/gnat Ada compiler
+# by providing the full path of the compiler (example) below:
#ALT_GCC= prefix/bin/gcc
. if defined(ALT_GCC)
. if exists(${ALT_GCC})
@@ -120,7 +118,7 @@ RALT_GCC_RTS= ${ALT_GCC_RTS:S%${LOCALBASE}%%:S%/%%}
PKG_SKIP_REASON= "Missing bootstrap Ada compiler"
. endif
. endif
-. if !defined(USE_GCC33ADA) && !defined(USE_GCC34ADA) && !defined(ALT_GCC)
+. if !defined(USE_GCC34ADA) && !defined(ALT_GCC)
PKG_SKIP_REASON= "An Ada bootstrap compiler must be specified to BUILD_ADA"
. endif
.endif
@@ -216,10 +214,8 @@ post-install:
.include "../../mk/bsd.prefs.mk"
.if !empty(BUILD_ADA:M[Yy][Ee][Ss])
-. if defined(USE_GCC33ADA)
-.include "../../lang/gcc3-ada/buildlink3.mk"
-. elif defined(USE_GCC34ADA)
-BUILDLINK_DEPMETHOD.gcc3-ada=build
+. if defined(USE_GCC34ADA)
+BUILDLINK_DEPMETHOD.gcc34-ada=build
.include "../../lang/gcc34-ada/buildlink3.mk"
. endif
.endif