diff options
author | George Shapovalov <george@gentoo.org> | 2004-03-17 07:50:56 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2004-03-17 07:50:56 +0000 |
commit | feec034338358a50d0bce6fbcd787364b22fda87 (patch) | |
tree | 26212f6601c0b7bb9cdbd1d269cf4d6ae77ecb9d /dev-libs/boost | |
parent | Fixed description ;) (Manifest recommit) (diff) | |
download | gentoo-2-feec034338358a50d0bce6fbcd787364b22fda87.tar.gz gentoo-2-feec034338358a50d0bce6fbcd787364b22fda87.tar.bz2 gentoo-2-feec034338358a50d0bce6fbcd787364b22fda87.zip |
removed alphas from the tree, as the release was sitting in stable for a while
Diffstat (limited to 'dev-libs/boost')
-rw-r--r-- | dev-libs/boost/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/boost/boost-1.31.0_alpha1.ebuild | 115 | ||||
-rw-r--r-- | dev-libs/boost/boost-1.31.0_alpha2-r1.ebuild | 133 | ||||
-rw-r--r-- | dev-libs/boost/boost-1.31.0_alpha2.ebuild | 115 | ||||
-rw-r--r-- | dev-libs/boost/files/digest-boost-1.31.0_alpha1 | 1 | ||||
-rw-r--r-- | dev-libs/boost/files/digest-boost-1.31.0_alpha2 | 1 | ||||
-rw-r--r-- | dev-libs/boost/files/digest-boost-1.31.0_alpha2-r1 | 1 |
7 files changed, 7 insertions, 368 deletions
diff --git a/dev-libs/boost/ChangeLog b/dev-libs/boost/ChangeLog index 05a4443ca180..9a38de602529 100644 --- a/dev-libs/boost/ChangeLog +++ b/dev-libs/boost/ChangeLog @@ -1,11 +1,16 @@ # ChangeLog for dev-libs/boost # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.13 2004/03/02 11:29:58 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.14 2004/03/17 07:50:47 george Exp $ -*boost-1.31.0 (25 Feb 2004) + + 16 Mar 2004; George Shapovalov <george@gentoo.org> boost-1.31.0_alpha*.ebuild : + removed alphas from portage, as the release is out for a while and is already marked stable *boost-1.31.0 (25 Feb 2004) + 25 Feb 2004; George Shapovalov <george@gentoo.org> boost-1.31.0.ebuild : + release is finally out. Added the ebuild, will keep alphas for a little while. + 24 Feb 2004; Sven Blumenstein <bazik@gentoo.org> boost-1.30.2.ebuild: Stable on sparc, DEPEND of media-sound/zinf diff --git a/dev-libs/boost/boost-1.31.0_alpha1.ebuild b/dev-libs/boost/boost-1.31.0_alpha1.ebuild deleted file mode 100644 index 82a58855a7ea..000000000000 --- a/dev-libs/boost/boost-1.31.0_alpha1.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.31.0_alpha1.ebuild,v 1.3 2004/02/03 07:55:10 george Exp $ - -MyPV="2003d18" - -DESCRIPTION="Boost provides free peer-reviewed portable C++ source libraries." -HOMEPAGE="http://www.boost.org" -#SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/boost/boost-${PV}.tar.bz2" -SRC_URI="mirror://gentoo/${PN}-${MyPV}.tar.bz2" - -S=${WORKDIR}/${PN} - -LICENSE="freedist" -KEYWORDS="~x86 ~ppc ~amd64" -SLOT="1" -IUSE="icc" - -# This would be a good place for someone to figure out how to get -# boost to build nicely with icc, as it's documented to be doable. - -DEPEND="virtual/glibc" -RDEPEND=">=dev-util/yacc-1.9.1-r1 - >=dev-lang/python-2.2.1 - icc? ( >=dev-lang/icc-7.1 )" - -src_compile() { - local PYTHON_VERSION=$(/usr/bin/python -V 2>&1 | sed 's/Python \([0-9][0-9]*\.[0-9][0-9]*\)\..*/\1/') - local BOOST_TOOLSET - local arch - - if [ "`use icc`" ] ; then - BOOST_TOOLSET="intel-linux" - else - BOOST_TOOLSET="gcc" - fi - - # Build bjam, a jam variant, which is used instead of make - cd ${S}/tools/build/jam_src - ./build.sh ${BOOST_TOOLSET} || die "Failed to build bjam" - cd ${S} - - if [ "${ARCH}" == "amd64" ]; then - arch= - else - arch=${ARCH} - fi - - if [ "`use icc`" ] ; then - ./tools/build/jam_src/bin.linux${arch}/bjam -j2 \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} \ - -sINTEL_LINUX_VERSION="70" || die "Failed to build boost libraries." - else - ./tools/build/jam_src/bin.linux${arch}/bjam ${MAKEOPTS} \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} - - einfo "Don't worry if there are a few (probably 6) failures above." - einfo "Some targets merely need to be combined. Here goes:" - - ./tools/build/jam_src/bin.linux${arch}/bjam \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} || die "Failed to build boost libraries." - fi -} - -src_install () { - # Unfortunately boost doesn't provide a standard way to - # install itself. So it's done "manually" here. - - # install libraries - find libs -type f -name \*.a -exec dolib.a {} \; - find libs -type f -name \*.so -exec dolib.so {} \; - - # install source/header files - - find boost -type f \ - -exec install -D -m0644 {} ${D}/usr/include/{} \; - - # install build tools - cd tools/build - #do_whatever is too limiting here, need to move bunch of different stuff recursively - dodir /usr/share/${PN} - cp -a b* c* index.html v1/ v2/ ${D}/usr/share/${PN} - cd ${S} - - # install documentation - dodoc README - dohtml index.htm google_logo_40wht.gif c++boost.gif boost.css - dohtml -A pdf -r more - dohtml -r people - dohtml -r doc - - find libs -type f -not -regex '^libs/[^/]*/build/.*' \ - -and -not -regex '^libs/.*/test[^/]?/.*' \ - -and -not -regex '^libs/.*/bench[^/]?/.*' \ - -and -not -regex '^libs/[^/]*/tools/.*' \ - -and -not -name \*.bat \ - -and -not -name Jamfile\* \ - -and -not -regex '^libs/[^/]*/src/.*' \ - -and -not -iname makefile \ - -and -not -name \*.mak \ - -and -not -name .\* \ - -and -not -name \*.dsw \ - -and -not -name \*.dsp \ - -exec \ - install -D -m0644 \{\} ${D}/usr/share/doc/${P}/html/\{\} \; -} diff --git a/dev-libs/boost/boost-1.31.0_alpha2-r1.ebuild b/dev-libs/boost/boost-1.31.0_alpha2-r1.ebuild deleted file mode 100644 index da026dfee82b..000000000000 --- a/dev-libs/boost/boost-1.31.0_alpha2-r1.ebuild +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.31.0_alpha2-r1.ebuild,v 1.2 2004/02/14 01:25:55 george Exp $ - -MyPV="2004202" - -DESCRIPTION="Boost provides free peer-reviewed portable C++ source libraries." -HOMEPAGE="http://www.boost.org" -#SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/boost/boost-${PV}.tar.bz2" -SRC_URI="mirror://gentoo/${PN}-${MyPV}.tar.bz2" - -S=${WORKDIR}/${PN} - -LICENSE="freedist" -KEYWORDS="~x86 ~ppc ~amd64" -SLOT="1" -IUSE="icc" - -# This would be a good place for someone to figure out how to get -# boost to build nicely with icc, as it's documented to be doable. - -DEPEND="virtual/glibc" -RDEPEND=">=dev-util/yacc-1.9.1-r1 - >=dev-lang/python-2.2.1 - icc? ( >=dev-lang/icc-7.1 )" - -src_compile() { - local PYTHON_VERSION=$(/usr/bin/python -V 2>&1 | sed 's/Python \([0-9][0-9]*\.[0-9][0-9]*\)\..*/\1/') - local BOOST_TOOLSET - local arch - - if [ "`use icc`" ] ; then - BOOST_TOOLSET="intel-linux" - else - BOOST_TOOLSET="gcc" - fi - - # Build bjam, a jam variant, which is used instead of make - cd ${S}/tools/build/jam_src - ./build.sh ${BOOST_TOOLSET} || die "Failed to build bjam" - cd ${S} - - if [ "${ARCH}" == "amd64" ]; then - arch= - else - arch=${ARCH} - fi - - if [ "`use icc`" ] ; then - ./tools/build/jam_src/bin.linux${arch}/bjam -j2 \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} \ - -sINTEL_LINUX_VERSION="70" || die "Failed to build boost libraries." - else - ./tools/build/jam_src/bin.linux${arch}/bjam ${MAKEOPTS} \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} - - einfo "Don't worry if there are a few (probably 6) failures above." - einfo "Some targets merely need to be combined. Here goes:" - - ./tools/build/jam_src/bin.linux${arch}/bjam \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} || die "Failed to build boost libraries." - fi -} - -src_install () { - # Unfortunately boost doesn't provide a standard way to - # install itself. So it's done "manually" here. - - # install libraries - find bin/boost/libs -type f -name \*.a -exec dolib.a {} \; - find bin/boost/libs -type f -name "*.so*" -exec dolib.so {} \; - #find bin/boost/libs -type l -name "*.so*" -exec dosym {} /usr/lib \; - - # install source/header files - - find boost -type f \ - -exec install -D -m0644 {} ${D}/usr/include/{} \; - - # install build tools - cd tools/build - #do_whatever is too limiting here, need to move bunch of different stuff recursively - dodir /usr/share/${PN} - cp -a b* c* index.html v1/ v2/ ${D}/usr/share/${PN} - cd ${S} - - # install documentation - dodoc README - dohtml index.htm google_logo_40wht.gif c++boost.gif boost.css - dohtml -A pdf -r more - dohtml -r people - dohtml -r doc - - find libs -type f -not -regex '^libs/[^/]*/build/.*' \ - -and -not -regex '^libs/.*/test[^/]?/.*' \ - -and -not -regex '^libs/.*/bench[^/]?/.*' \ - -and -not -regex '^libs/[^/]*/tools/.*' \ - -and -not -name \*.bat \ - -and -not -name Jamfile\* \ - -and -not -regex '^libs/[^/]*/src/.*' \ - -and -not -iname makefile \ - -and -not -name \*.mak \ - -and -not -name .\* \ - -and -not -name \*.dsw \ - -and -not -name \*.dsp \ - -exec \ - install -D -m0644 \{\} ${D}/usr/share/doc/${P}/html/\{\} \; - - #create symlinks for the libs - LocalPV="1_31" - cd ${D}/usr/lib - for fn in *.so*; do - baseName=${fn%%so*} - #.so symlinks - ln -s $fn ${baseName}so - #remove version from .so's and .a's - ln -s ${baseName}so ${baseName/-$LocalPV/}so - ln -s ${baseName}a ${baseName/-$LocalPV/}a - done - #and finally set "default" links to -gcc-mt versions - for fn in `ls -1 *.so|cut -d- -f1|sort|uniq`; do - ln -s $fn-gcc-mt.so $fn.so - ln -s $fn-gcc-mt.a $fn.a - done -} diff --git a/dev-libs/boost/boost-1.31.0_alpha2.ebuild b/dev-libs/boost/boost-1.31.0_alpha2.ebuild deleted file mode 100644 index adb41b92f21f..000000000000 --- a/dev-libs/boost/boost-1.31.0_alpha2.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.31.0_alpha2.ebuild,v 1.1 2004/02/03 07:55:10 george Exp $ - -MyPV="2004202" - -DESCRIPTION="Boost provides free peer-reviewed portable C++ source libraries." -HOMEPAGE="http://www.boost.org" -#SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/boost/boost-${PV}.tar.bz2" -SRC_URI="mirror://gentoo/${PN}-${MyPV}.tar.bz2" - -S=${WORKDIR}/${PN} - -LICENSE="freedist" -KEYWORDS="~x86 ~ppc ~amd64" -SLOT="1" -IUSE="icc" - -# This would be a good place for someone to figure out how to get -# boost to build nicely with icc, as it's documented to be doable. - -DEPEND="virtual/glibc" -RDEPEND=">=dev-util/yacc-1.9.1-r1 - >=dev-lang/python-2.2.1 - icc? ( >=dev-lang/icc-7.1 )" - -src_compile() { - local PYTHON_VERSION=$(/usr/bin/python -V 2>&1 | sed 's/Python \([0-9][0-9]*\.[0-9][0-9]*\)\..*/\1/') - local BOOST_TOOLSET - local arch - - if [ "`use icc`" ] ; then - BOOST_TOOLSET="intel-linux" - else - BOOST_TOOLSET="gcc" - fi - - # Build bjam, a jam variant, which is used instead of make - cd ${S}/tools/build/jam_src - ./build.sh ${BOOST_TOOLSET} || die "Failed to build bjam" - cd ${S} - - if [ "${ARCH}" == "amd64" ]; then - arch= - else - arch=${ARCH} - fi - - if [ "`use icc`" ] ; then - ./tools/build/jam_src/bin.linux${arch}/bjam -j2 \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} \ - -sINTEL_LINUX_VERSION="70" || die "Failed to build boost libraries." - else - ./tools/build/jam_src/bin.linux${arch}/bjam ${MAKEOPTS} \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} - - einfo "Don't worry if there are a few (probably 6) failures above." - einfo "Some targets merely need to be combined. Here goes:" - - ./tools/build/jam_src/bin.linux${arch}/bjam \ - -sBOOST_ROOT=${S} \ - -sPYTHON_ROOT=/usr \ - -sPYTHON_VERSION=${PYTHON_VERSION} \ - -sTOOLS=${BOOST_TOOLSET} || die "Failed to build boost libraries." - fi -} - -src_install () { - # Unfortunately boost doesn't provide a standard way to - # install itself. So it's done "manually" here. - - # install libraries - find bin/boost/libs -type f -name \*.a -exec dolib.a {} \; - find bin/boost/libs -type f -name "*.so*" -exec dolib.so {} \; - - # install source/header files - - find boost -type f \ - -exec install -D -m0644 {} ${D}/usr/include/{} \; - - # install build tools - cd tools/build - #do_whatever is too limiting here, need to move bunch of different stuff recursively - dodir /usr/share/${PN} - cp -a b* c* index.html v1/ v2/ ${D}/usr/share/${PN} - cd ${S} - - # install documentation - dodoc README - dohtml index.htm google_logo_40wht.gif c++boost.gif boost.css - dohtml -A pdf -r more - dohtml -r people - dohtml -r doc - - find libs -type f -not -regex '^libs/[^/]*/build/.*' \ - -and -not -regex '^libs/.*/test[^/]?/.*' \ - -and -not -regex '^libs/.*/bench[^/]?/.*' \ - -and -not -regex '^libs/[^/]*/tools/.*' \ - -and -not -name \*.bat \ - -and -not -name Jamfile\* \ - -and -not -regex '^libs/[^/]*/src/.*' \ - -and -not -iname makefile \ - -and -not -name \*.mak \ - -and -not -name .\* \ - -and -not -name \*.dsw \ - -and -not -name \*.dsp \ - -exec \ - install -D -m0644 \{\} ${D}/usr/share/doc/${P}/html/\{\} \; -} diff --git a/dev-libs/boost/files/digest-boost-1.31.0_alpha1 b/dev-libs/boost/files/digest-boost-1.31.0_alpha1 deleted file mode 100644 index 2b55072a94a2..000000000000 --- a/dev-libs/boost/files/digest-boost-1.31.0_alpha1 +++ /dev/null @@ -1 +0,0 @@ -MD5 330544213967fb645ab80a8880d179be boost-2003d18.tar.bz2 5571333 diff --git a/dev-libs/boost/files/digest-boost-1.31.0_alpha2 b/dev-libs/boost/files/digest-boost-1.31.0_alpha2 deleted file mode 100644 index fa5bf0c56ed3..000000000000 --- a/dev-libs/boost/files/digest-boost-1.31.0_alpha2 +++ /dev/null @@ -1 +0,0 @@ -MD5 5c013e8af25cafc0f6e6dbc40d3b6244 boost-2004202.tar.bz2 7389870 diff --git a/dev-libs/boost/files/digest-boost-1.31.0_alpha2-r1 b/dev-libs/boost/files/digest-boost-1.31.0_alpha2-r1 deleted file mode 100644 index fa5bf0c56ed3..000000000000 --- a/dev-libs/boost/files/digest-boost-1.31.0_alpha2-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 5c013e8af25cafc0f6e6dbc40d3b6244 boost-2004202.tar.bz2 7389870 |