diff options
Diffstat (limited to 'media-libs/openinventor')
-rw-r--r-- | media-libs/openinventor/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/openinventor/files/digest-openinventor-2.1.5.10 | 1 | ||||
-rw-r--r-- | media-libs/openinventor/openinventor-2.1.5.10.ebuild | 83 |
3 files changed, 5 insertions, 85 deletions
diff --git a/media-libs/openinventor/ChangeLog b/media-libs/openinventor/ChangeLog index f8670c60d53e..72cd8aa819c5 100644 --- a/media-libs/openinventor/ChangeLog +++ b/media-libs/openinventor/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/openinventor # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.8 2005/12/25 21:49:47 stefaan Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/ChangeLog,v 1.9 2005/12/26 14:36:01 stefaan Exp $ + + 26 Dec 2005; Stefaan De Roeck <stefaan@gentoo.org> + -openinventor-2.1.5.10.ebuild: + Remove old ebuild 25 Dec 2005; Stefaan De Roeck <stefaan@gentoo.org> openinventor-2.1.5.10-r1.ebuild: diff --git a/media-libs/openinventor/files/digest-openinventor-2.1.5.10 b/media-libs/openinventor/files/digest-openinventor-2.1.5.10 deleted file mode 100644 index 95d1053b6fb2..000000000000 --- a/media-libs/openinventor/files/digest-openinventor-2.1.5.10 +++ /dev/null @@ -1 +0,0 @@ -MD5 82208096f1e0b111160e864e239c3a51 inventor-2.1.5-10.src.tar.gz 8282780 diff --git a/media-libs/openinventor/openinventor-2.1.5.10.ebuild b/media-libs/openinventor/openinventor-2.1.5.10.ebuild deleted file mode 100644 index f52ee9b6794d..000000000000 --- a/media-libs/openinventor/openinventor-2.1.5.10.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10.ebuild,v 1.4 2005/11/15 03:10:39 chriswhite Exp $ - -inherit eutils versionator - -MY_PV=$(replace_version_separator 3 '-') -MY_PN="inventor" - -DESCRIPTION="SGI OpenInventor Toolkit and Utilities" -HOMEPAGE="http://oss.sgi.com/projects/inventor/" -SRC_URI="ftp://oss.sgi.com/projects/${MY_PN}/download/${MY_PN}-${MY_PV}.src.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="alpha ~amd64 x86" -IUSE="" - -RDEPEND="virtual/x11 - virtual/opengl - virtual/motif - >=media-libs/jpeg-6b - >=media-libs/freetype-2.0" -DEPEND="dev-util/byacc - ${RDEPEND}" - -S="${WORKDIR}/${MY_PN}" - -src_unpack() { - unpack ${A} - cd ${S} - # ordinary yacc fails - epatch ${FILESDIR}/use-byacc.patch - # support for amd64, sparc and alpha - epatch ${FILESDIR}/support-archs.patch - # freetype2 wasn't enabled by default - epatch ${FILESDIR}/freetype2-activate.patch - # extra #include statement necessary for freetype2 - epatch ${FILESDIR}/freetype2-includes.patch - # script aiding in manual installation required csh - epatch ${FILESDIR}/no-csh.patch - # put files in sane places - epatch ${FILESDIR}/gentoo-paths.patch - # fix compilation with gcc-4 - epatch ${FILESDIR}/gcc4-support.patch -} - -src_compile() { - # VLDOPTS: find libraries during linking of executables - # VLDDSOOPTS: find libraries during linking of libraries - # VCFLAGS / VCXXFLAGS: pass user-chosen compiler flags - # OPTIMIZER: do not override user-chosen compiler flags - # system - emake \ - VLDOPTS="-L${S}/lib -L${S}/libSoXt" \ - VLDDSOOPTS="-L${S}/lib -L${S}/libSoXt" \ - VCFLAGS="${CFLAGS}" VCXXFLAGS="${CXXFLAGS}" \ - OPTIMIZER= \ - || die "Build failed" -} - -src_install() { - # IVROOT: serves as DESTDIR - # LLDOPTS: delete, so it won't go linking with libraries already on the - # system - # LD_LIBRARY_PATH: support executables ran during install - make \ - IVROOT="${D}" \ - LLDOPTS= \ - IVLIBDIR="${D}usr/$(get_libdir)" \ - LD_LIBRARY_PATH="${D}usr/$(get_libdir)" \ - install \ - || die "Install failed" - - # OpenInventor aliases for TrueType fonts - local FONTDIR=/usr/share/fonts/corefonts - local ALIASDIR=/usr/share/${PN}/fonts - dodir ${ALIASDIR} - dosym ${FONTDIR}/times.ttf ${ALIASDIR}/Times-Roman - dosym ${FONTDIR}/arial.ttf ${ALIASDIR}/Helvetica - dosym ${FONTDIR}/cour.ttf ${ALIASDIR}/Utopia-Regular -} - |