# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/STLport/STLport-5.1.5.ebuild,v 1.7 2009/09/11 11:24:44 flameeyes Exp $ inherit eutils versionator eutils toolchain-funcs multilib flag-o-matic KEYWORDS="amd64 ppc ppc64 sparc x86" DESCRIPTION="C++ STL library" HOMEPAGE="http://stlport.sourceforge.net/" SRC_URI="mirror://sourceforge/stlport/${P}.tar.bz2" LICENSE="as-is" SLOT="0" IUSE="boost" DEPEND="boost? ( dev-libs/boost )" RDEPEND="${DEPEND}" src_unpack() { unpack ${A} cd "${S}" #Debian bug 356570 http://bugs.debian.org/356570 #Gentoo bug 183060 http://bugs.gentoo.org/183060 #Debian bug 443234 http://bugs.debian.org/443234 #Debian bug 389316 http://bugs.debian.org/389316 #Debian bug 384247 http://bugs.debian.org/384247 #Debian bug 465395 http://bugs.debian.org/465395 #Debian bug 468063 http://bugs.debian.org/468063 epatch "${FILESDIR}/${P}-portability-hack.patch" \ "${FILESDIR}/${P}-bashism.patch" \ "${FILESDIR}/${P}-cxx_use_c99.patch" \ "${FILESDIR}/${P}-hppa.patch" \ "${FILESDIR}/${P}-alpha.patch" \ "${FILESDIR}/${P}-fix-warnings.patch" \ "${FILESDIR}/${P}-gcc-4.3.patch" sed -i \ -e 's/\(OPT += \)-O2/\1/' \ build/Makefiles/gmake/*cc.mak \ || die "sed opts failed" sed -i \ -e 's/_STLP_VENDOR_CSTD::wcsftime/::wcsftime/' \ stlport/stl/_cwchar.h || die "sed failed" # CXX_VERSION on gentoo has ( )s in them, they need to be quoted. sed -i \ -e 's/echo ${CXX_VERSION}/echo "${CXX_VERSION}"/' \ build/Makefiles/gmake/*.mak \ || die "sed CXX_VERSION failed" # We have to add this to host.h to make sure # that dependencies of STLport use the same settings cat <<- EOF >> stlport/stl/config/host.h #define _STLP_NATIVE_INCLUDE_PATH ../g++-v$(gcc-major-version) /* use pthreads for threading */ #define _PTHREADS /* enable largefile support */ #define _FILE_OFFSET_BITS 64 #define _LARGEFILE_SOURCE #define _LARGEFILE64_SOURCE EOF } src_compile() { sed -i \ -e "s|\(CC :=\) gcc|\1 $(tc-getCC)|" \ -e "s|\(CXX :=\) c++|\1 $(tc-getCXX)|" \ -e "s|^\(CFLAGS = \)|\1 ${CFLAGS} |" \ -e "s|^\(CCFLAGS = \)|\1 ${CFLAGS} |" \ -e "s|^\(CPPFLAGS = \)|\1 ${CPPFLAGS} |" \ build/Makefiles/gmake/gcc.mak || die "sed failed" local myconf if use boost ; then myconf="${myconf} --with-boost=/usr/include" sed -i \ -e 'N;N;N;s:/\**\n\(#define _STLP_USE_BOOST_SUPPORT 1\)*\n\*/:\1:' \ stlport/stl/config/user_config.h fi cd "${S}/build/lib" # It's not an autoconf script ./configure \ ${myconf} \ --with-extra-cxxflags="${CXXFLAGS}" || die "configure failed" cd "${S}" cat <<- EOF >> build/Makefiles/config.mak CFLAGS := ${CFLAGS} EOF local targets targets="all-shared all-static" # The build-system is broken in respect to parallel builds, bug #161881 emake \ -j1 \ -C build/lib \ -f gcc.mak \ depend ${targets} || die "Compile failed" } src_install() { emake -C build/lib -f gcc.mak install dolib.so lib/* emake -C build/lib -f gcc.mak install-static dolib.a lib/*.a insinto /usr/include doins -r stlport dodoc README etc/ChangeLog* etc/*.txt doc/* } src_test() { cd "${S}/build" sed -i \ -e "1aLDFLAGS := -L${S}/build/lib/obj/gcc/so -L${S}/build/lib/obj/gcc/so_g -L${S}/build/lib/obj/gcc/so_stlg" \ test/unit/gcc.mak || die "sed failed" emake -j1 -C test/unit -f gcc.mak || die "emake tests failed" export LD_LIBRARY_PATH="./lib/obj/gcc/so_stlg" ./test/unit/obj/gcc/so_stlg/stl_unit_test || die "unit tests failed" }