diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-01 04:36:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-01 04:36:16 +0000 |
commit | 4e890e3415770ce6d4ed0805eb5fb4598f4eba75 (patch) | |
tree | 973df5827c35aad36ea3b3cb76c3ca50971075b7 /sys-libs/uclibc++ | |
parent | Remove mono-1.1.13* from package.mask (yay) (diff) | |
download | gentoo-2-4e890e3415770ce6d4ed0805eb5fb4598f4eba75.tar.gz gentoo-2-4e890e3415770ce6d4ed0805eb5fb4598f4eba75.tar.bz2 gentoo-2-4e890e3415770ce6d4ed0805eb5fb4598f4eba75.zip |
Version bump.
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'sys-libs/uclibc++')
-rw-r--r-- | sys-libs/uclibc++/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/uclibc++/files/digest-uclibc++-0.2.0 | 3 | ||||
-rw-r--r-- | sys-libs/uclibc++/uclibc++-0.2.0.ebuild | 77 |
3 files changed, 87 insertions, 2 deletions
diff --git a/sys-libs/uclibc++/ChangeLog b/sys-libs/uclibc++/ChangeLog index 88839adcd32a..5ceb4a207188 100644 --- a/sys-libs/uclibc++/ChangeLog +++ b/sys-libs/uclibc++/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/uclibc++ -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/uclibc++/ChangeLog,v 1.4 2005/12/11 16:46:21 vapier Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/uclibc++/ChangeLog,v 1.5 2006/03/01 04:36:16 vapier Exp $ + +*uclibc++-0.2.0 (01 Mar 2006) + + 01 Mar 2006; Mike Frysinger <vapier@gentoo.org> +uclibc++-0.2.0.ebuild: + Version bump. *uclibc++-0.1.12 (11 Dec 2005) diff --git a/sys-libs/uclibc++/files/digest-uclibc++-0.2.0 b/sys-libs/uclibc++/files/digest-uclibc++-0.2.0 new file mode 100644 index 000000000000..83e3129f7c22 --- /dev/null +++ b/sys-libs/uclibc++/files/digest-uclibc++-0.2.0 @@ -0,0 +1,3 @@ +MD5 33e01302511c9a1987fb104f12d173e1 uClibc++-0.2.0.tbz 259087 +RMD160 0013d5ec9e6ef21a18bd5d3f80a0693f8bfc8dcb uClibc++-0.2.0.tbz 259087 +SHA256 fe562a198db8737c932370eaff17941f1bdbec1fc7d30b86c0ea41d701c6097b uClibc++-0.2.0.tbz 259087 diff --git a/sys-libs/uclibc++/uclibc++-0.2.0.ebuild b/sys-libs/uclibc++/uclibc++-0.2.0.ebuild new file mode 100644 index 000000000000..fdb4bf04aabf --- /dev/null +++ b/sys-libs/uclibc++/uclibc++-0.2.0.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/uclibc++/uclibc++-0.2.0.ebuild,v 1.1 2006/03/01 04:36:16 vapier Exp $ + +inherit eutils toolchain-funcs + +export CTARGET=${CTARGET:-${CHOST}} +if [[ ${CTARGET} == ${CHOST} ]] ; then + if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then + export CTARGET=${CATEGORY/cross-} + fi +fi + +DESCRIPTION="embedded C++ library" +HOMEPAGE="http://cxx.uclibc.org/" +SRC_URI="http://cxx.uclibc.org/src/uClibc++-${PV}.tbz" + +LICENSE="GPL-2" +[[ ${CTARGET} != ${CHOST} ]] \ + && SLOT="${CTARGET}" \ + || SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86" +IUSE="debug static" + +DEPEND="" + +S=${WORKDIR}/uClibc++ + +src_unpack() { + unpack ${A} + cd "${S}" + make defconfig || die "defconfig failed" + + local target + case $(tc-arch ${CTARGET}) in + alpha) target="alpha";; + amd64) target="x86_64";; + arm) target="arm";; + hppa) target="hppa";; + mips) target="mips";; + ppc) target="powerpc";; + x86) target="i386";; + *) die "$(tc-arch ${CTARGET}) lists no defaults :/";; + esac + + sed -i \ + -e '/^UCLIBCXX_RUNTIME_PREFIX=/d' \ + -e '/^TARGET_'${target}'/d' \ + .config + + echo "UCLIBCXX_RUNTIME_PREFIX=\"/usr/${CTARGET}\"" >> .config + echo "TARGET_${target}=y" >> .config + use debug && echo "CONFIG_DODEBUG=y" >> .config + + yes "" | make oldconfig || die "oldconfig failed" + + # has to come after make oldconfig, else it will be disabled + echo "BUILD_STATIC_LIB=y" >> .config + if use static ; then + echo "BUILD_ONLY_STATIC_LIB=y" >> .config + fi +} + +src_compile() { + emake -j1 ARCH_CFLAGS="${CFLAGS}" CROSS=${CTARGET}- || die "make failed" +} + +src_test() { + make test || die "test failed" +} + +src_install() { + make install PREFIX="${D}" || die + dodir /usr/bin + dosym /usr/${CTARGET}/bin/g++-uc /usr/bin/g++-uc + dodoc ChangeLog README TODO +} |