diff options
Diffstat (limited to 'dev-cpp/orbitcpp/orbitcpp-1.3.9.ebuild')
-rw-r--r-- | dev-cpp/orbitcpp/orbitcpp-1.3.9.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-cpp/orbitcpp/orbitcpp-1.3.9.ebuild b/dev-cpp/orbitcpp/orbitcpp-1.3.9.ebuild new file mode 100644 index 000000000000..633aee012a8d --- /dev/null +++ b/dev-cpp/orbitcpp/orbitcpp-1.3.9.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/orbitcpp/orbitcpp-1.3.9.ebuild,v 1.1 2004/06/12 02:53:57 khai Exp $ + +inherit gnome.org + +DESCRIPTION="C++ Bindings for ORBit2" +HOMEPAGE="http://orbitcpp.sourceforge.net/" +LICENSE="LGPL-2.1" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +IUSE="" + +RDEPEND=">=gnome-base/ORBit2-2.5 + >=dev-libs/libIDL-0.7.4" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf || die + emake -j1 || die +} + +src_install() { + make DESTDIR=${D} install || die + dosym /usr/lib/libORBit-2-cpp.so.6.0.0 /usr/lib/libORBit-2-cpp.so.5 +} |