* Found a new mastersite for the patches. Also found more patches there.

* Fix the build problem that was created when bsd.port.mk started setting
  CXXFLAGS in MAKE_ENV.  The problem is if a port uses a BSD-style Makefile
  and C++, sys.mk will not craft a proper CXXFLAGS because it uses "=?".
This commit is contained in:
David E. O'Brien 2001-03-09 13:01:35 +00:00
parent 9b41fd3b79
commit ae33ef37fd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39308
3 changed files with 11 additions and 6 deletions

View File

@ -16,10 +16,11 @@ MASTER_SITES= http://www.m-hollstein.de/libgxx/ \
ftp://ftp.ninemoons.com/pub/mirrors/egcs/infrastructure/ \
${MASTER_SITE_GNU}
PATCH_SITES= http://www.m-hollstein.de/libgxx/ \
${MASTER_SITE_LOCAL}
PATCH_SITE_SUBDIR= obrien
PATCHFILES= ${DISTNAME}-20000312.diff.gz
PATCH_SITES= http://www.cygnus.com/~manfredh/libgxx/ \
PATCHFILES= ${DISTNAME}-20000312.diff.gz \
${DISTNAME}-20000419.diff.gz \
${DISTNAME}-20000816.diff.gz \
${DISTNAME}-20000914.diff.gz
PATCH_DIST_STRIP= -p1
MAINTAINER= obrien@FreeBSD.org
@ -28,8 +29,6 @@ CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL}
PLIST_SUB= GCC28SUBDIR=${GCC28DIR}
USE_NEWGCC= yes
BROKEN= "Does not build - compiler error"
pre-configure:
@${CP} -p ${FILESDIR}/Makefile.libg++ ${WRKSRC}/Makefile

View File

@ -1,2 +1,5 @@
MD5 (libg++-2.8.1.3.tar.gz) = 2826dbbd081646c459b1774145ffd7bf
MD5 (libg++-2.8.1.3-20000312.diff.gz) = 906124171f15ee1585d840ed7d174009
MD5 (libg++-2.8.1.3-20000419.diff.gz) = 47b93312badd9550ccb7d113bbf0242a
MD5 (libg++-2.8.1.3-20000816.diff.gz) = 9e00e62b8fb7af3e41364b7c6d9f4cf8
MD5 (libg++-2.8.1.3-20000914.diff.gz) = 625dd5a953661b901c876f92c2c5e7a6

View File

@ -11,6 +11,9 @@ DESTDIR= ${PREFIX}
LIBDIR= /lib
CFLAGS+= -I./libg++/src -I./librx -I/usr/include/g++
# work around a nasty interaction between bsd.port.mk which prevents
# sys.mk from crafting a proper CXXFLAGS
CXXFLAGS+= ${CFLAGS}
# This Makefile was created extracting the libstdc++-2.8.1.1 distribution
# and then extracting the libg++-2.8.1.3 distribution w/in that.