diff options
author | Daniel Black <dragonheart@gentoo.org> | 2006-11-02 19:01:46 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2006-11-02 19:01:46 +0000 |
commit | 029c128e723d6d5b4ea0b8d140a044f88a29d821 (patch) | |
tree | cacc8d9a2bd7f89d0d417565dd6df25e47e819bc /dev-libs/ace/ace-5.5-r1.ebuild | |
parent | added dev-libs/ace:tao (diff) | |
download | gentoo-2-029c128e723d6d5b4ea0b8d140a044f88a29d821.tar.gz gentoo-2-029c128e723d6d5b4ea0b8d140a044f88a29d821.tar.bz2 gentoo-2-029c128e723d6d5b4ea0b8d140a044f88a29d821.zip |
tao extensions as per bug #89913 thanks to Ben Gardiner and Patrizio Bassi
(Portage version: 2.1.2_rc1-r1)
Diffstat (limited to 'dev-libs/ace/ace-5.5-r1.ebuild')
-rw-r--r-- | dev-libs/ace/ace-5.5-r1.ebuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/dev-libs/ace/ace-5.5-r1.ebuild b/dev-libs/ace/ace-5.5-r1.ebuild new file mode 100644 index 000000000000..c282552239ad --- /dev/null +++ b/dev-libs/ace/ace-5.5-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ace/ace-5.5-r1.ebuild,v 1.1 2006/11/02 19:01:46 dragonheart Exp $ + +inherit eutils + +S="${WORKDIR}/ACE_wrappers" +DESCRIPTION="The Adaptive Communications Environment" +SRC_URI="!tao? ( http://deuce.doc.wustl.edu/old_distribution/ACE-${PV}.tar.bz2 ) + tao? ( http://deuce.doc.wustl.edu/old_distribution/ACE-${PV}+TAO-1.5.tar.bz2 )" + +HOMEPAGE="http://www.cs.wustl.edu/~schmidt/ACE.html" + +SLOT="0" +LICENSE="BSD as-is" +KEYWORDS="~x86 ~sparc ~ppc ~alpha ~amd64" +IUSE="X ipv6 tao" + +DEPEND="dev-libs/openssl" + +RDEPEND="${DEPEND} + X? ( || ( + ( x11-libs/libXt + x11-libs/libXaw ) + virtual/x11 ) + )" + +DEPEND="${DEPEND} + X? ( || ( + ( x11-proto/xproto ) + virtual/x11 ) + )" + +src_compile() { + export ACE_ROOT="${S}" + mkdir build + cd build + ECONF_SOURCE="${S}" + econf --enable-lib-all $(use_with X) $(use_enable ipv6) $(use_with tao) || \ + die "econf died" + # --with-qos needs ACE_HAS_RAPI + emake static_libs=1 || die +} + + +src_test() { + cd ${S}/build + make ACE_ROOT=${S} check || die "self test failed" + #einfo "src_test currently stalls after Process_Mutex_Test" +} + +src_install() { + cd build + make ACE_ROOT="${S}" DESTDIR="${D}" install || die "failed to install" +} + + +pkg_postinst() { + # This is required, as anything trying to compile against ACE will have + # problems with conflicting OS.h files if this is not done. + + local CC_MACHINE=`gcc -dumpmachine` + local CC_VERSION=`gcc -dumpversion` + if [ -d "/usr/lib/gcc-lib/${CC_MACHINE}/${CC_VERSION}/include/ace" ]; then + mv "/usr/lib/gcc-lib/${CC_MACHINE}/${CC_VERSION}/include/ace" \ + "/usr/lib/gcc-lib/${CC_MACHINE}/${CC_VERSION}/include/ace.old" + fi +} |