summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2011-07-28 16:44:09 +0000
committerPatrick Lauer <patrick@gentoo.org>2011-07-28 16:44:09 +0000
commit3afbbdbfd2684677dbd316bae25d7723bba69ec1 (patch)
treeafe7a4a337bfce9f79d5ca7e0280fecf3bea469d /media-gfx/freewrl
parentDisable TEE for kernel >= 2.6.35 as it's already in kernel and no need to bui... (diff)
downloadgentoo-2-3afbbdbfd2684677dbd316bae25d7723bba69ec1.tar.gz
gentoo-2-3afbbdbfd2684677dbd316bae25d7723bba69ec1.tar.bz2
gentoo-2-3afbbdbfd2684677dbd316bae25d7723bba69ec1.zip
Remove old
(Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/freewrl')
-rw-r--r--media-gfx/freewrl/ChangeLog6
-rw-r--r--media-gfx/freewrl/freewrl-1.22.10.ebuild113
-rw-r--r--media-gfx/freewrl/freewrl-1.22.9.ebuild99
3 files changed, 5 insertions, 213 deletions
diff --git a/media-gfx/freewrl/ChangeLog b/media-gfx/freewrl/ChangeLog
index 9ee81fe7bacb..88e832f8becc 100644
--- a/media-gfx/freewrl/ChangeLog
+++ b/media-gfx/freewrl/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-gfx/freewrl
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/freewrl/ChangeLog,v 1.35 2011/07/28 16:28:14 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/freewrl/ChangeLog,v 1.36 2011/07/28 16:44:09 patrick Exp $
+
+ 28 Jul 2011; Patrick Lauer <patrick@gentoo.org> -freewrl-1.22.9.ebuild,
+ -freewrl-1.22.10.ebuild:
+ Remove old
*freewrl-1.22.12_pre2 (28 Jul 2011)
diff --git a/media-gfx/freewrl/freewrl-1.22.10.ebuild b/media-gfx/freewrl/freewrl-1.22.10.ebuild
deleted file mode 100644
index 342c564da681..000000000000
--- a/media-gfx/freewrl/freewrl-1.22.10.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/freewrl/freewrl-1.22.10.ebuild,v 1.4 2011/04/02 14:29:43 ssuominen Exp $
-
-EAPI="2"
-
-inherit nsplugins eutils flag-o-matic java-pkg-opt-2
-
-DESCRIPTION="VRML2 and X3D compliant browser"
-SRC_URI="mirror://sourceforge/freewrl/${P}.tar.bz2"
-HOMEPAGE="http://freewrl.sourceforge.net/"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="curl debug libeai +glew +java +motif nsplugin +sox spidermonkey static-libs"
-
-COMMONDEPEND="x11-libs/libXau
- x11-libs/libXdmcp
- x11-libs/libXext
- x11-libs/libX11
- motif? ( x11-libs/openmotif )
- media-libs/mesa
- glew? ( media-libs/glew )
- virtual/opengl
- media-libs/libpng
- virtual/jpeg
- media-libs/imlib2
- >=media-libs/freetype-2
- media-libs/fontconfig
- curl? ( net-misc/curl )
- !spidermonkey? ( <net-libs/xulrunner-2.0 )
- spidermonkey? ( dev-lang/spidermonkey )
- nsplugin? ( || (
- <net-libs/xulrunner-2.0
- www-client/firefox
- ) )"
-DEPEND="${COMMONDEPEND}
- >=dev-util/pkgconfig-0.22
- java? ( >=virtual/jdk-1.4 )"
-RDEPEND="${COMMONDEPEND}
- media-fonts/dejavu
- || ( media-gfx/imagemagick
- media-gfx/graphicsmagick[imagemagick] )
- app-arch/unzip
- java? ( >=virtual/jre-1.4 )
- sox? ( media-sound/sox )"
-
-src_prepare() {
- # A hack to get around expat being grabbed from xulrunner
- mkdir "${S}/src/lib/include";
- cp /usr/include/expat.h "${S}/src/lib/include/";
- cp /usr/include/expat_external.h "${S}/src/lib/include/";
-}
-
-src_configure() {
- local myconf="--enable-fontconfig
- --with-imageconvert=/usr/bin/convert
- --with-unzip=/usr/bin/unzip"
- if use motif; then
- myconf="${myconf} --with-x --with-target=motif"
- else
- myconf="${myconf} --with-x --with-target=x11"
- fi
- if use nsplugin; then
- myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/${PLUGINS_DIR}"
- fi
- if use sox; then
- myconf="${myconf} --with-soundconv=/usr/bin/sox"
- fi
- if use spidermonkey; then
- # disable the checks for other js libs, in case they are installed
- myconf="${myconf} --disable-mozilla-js --disable-xulrunner-js --disable-firefox-js --disable-seamonkey-js"
- # spidermonkey has no pkg-config, so override ./configure
- JAVASCRIPT_ENGINE_CFLAGS="-I/usr/include/js -DXP_UNIX"
- JAVASCRIPT_ENGINE_LIBS="-ljs"
- if has_version dev-lang/spidermonkey[threadsafe] ; then
- JAVASCRIPT_ENGINE_CFLAGS="${JAVASCRIPT_ENGINE_CFLAGS} -DJS_THREADSAFE $(pkg-config --cflags nspr)"
- JAVASCRIPT_ENGINE_LIBS="$(pkg-config --libs nspr) ${JAVASCRIPT_ENGINE_LIBS}"
- fi
- export JAVASCRIPT_ENGINE_CFLAGS
- export JAVASCRIPT_ENGINE_LIBS
- else
- # more hack to get around expat being grabbed from xulrunner
- myconf="${myconf} --with-expat=${S}/src/lib"
- fi
- econf ${myconf} \
- $(use_enable curl libcurl) \
- $(use_with glew) \
- $(use_enable debug) $(use_enable debug thread_colorized) \
- $(use_enable libeai) \
- $(use_enable java) \
- $(use_enable nsplugin plugin) \
- $(use_enable static-libs static) \
- $(use_enable sox sound)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- if use java; then
- java-pkg_dojar src/java/vrml.jar
- insinto /usr/share/${PN}/lib
- doins src/java/java.policy
- elog "Because vrml.jar requires access to sockets, you will need to incorporate the"
- elog "contents of /usr/share/${PN}/lib/java.policy into your system or user's default"
- elog "java policy."
- fi
-
- # remove unneeded .la files (as per Flameeyes' rant)
- cd "${D}"
- rm "usr/$(get_libdir)"/*.la "usr/$(get_libdir)/${PLUGINS_DIR}"/*.la
-}
diff --git a/media-gfx/freewrl/freewrl-1.22.9.ebuild b/media-gfx/freewrl/freewrl-1.22.9.ebuild
deleted file mode 100644
index 13cbcba27328..000000000000
--- a/media-gfx/freewrl/freewrl-1.22.9.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/freewrl/freewrl-1.22.9.ebuild,v 1.5 2011/04/01 14:23:55 patrick Exp $
-
-EAPI="2"
-
-inherit nsplugins eutils flag-o-matic
-
-DESCRIPTION="VRML2 and X3D compliant browser"
-SRC_URI="mirror://sourceforge/freewrl/${P}.tar.bz2"
-HOMEPAGE="http://freewrl.sourceforge.net/"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="curl debug libeai +glew +motif nsplugin +sox spidermonkey static"
-
-COMMONDEPEND="x11-libs/libXau
- x11-libs/libXdmcp
- x11-libs/libXext
- x11-libs/libX11
- motif? ( >=x11-libs/openmotif-2.3:0 )
- media-libs/mesa
- glew? ( media-libs/glew )
- virtual/opengl
- media-libs/libpng
- virtual/jpeg
- media-libs/imlib2
- >=media-libs/freetype-2
- curl? ( net-misc/curl )
- !spidermonkey? ( <net-libs/xulrunner-2.0 )
- spidermonkey? ( dev-lang/spidermonkey )
- nsplugin? ( || (
- <net-libs/xulrunner-2.0
- www-client/firefox
- ) )"
-DEPEND="${COMMONDEPEND}
- >=dev-util/pkgconfig-0.22"
-RDEPEND="${COMMONDEPEND}
- media-fonts/ttf-bitstream-vera
- media-gfx/imagemagick
- app-arch/unzip
- sox? ( media-sound/sox )"
-
-src_prepare() {
- # A hack to get around expat being grabbed from xulrunner
- mkdir "${S}/src/lib/include";
- cp /usr/include/expat.h "${S}/src/lib/include/";
- cp /usr/include/expat_external.h "${S}/src/lib/include/";
-}
-
-src_configure() {
- local myconf="--with-fontsdir=/usr/share/fonts/ttf-bitstream-vera
- --with-imageconvert=/usr/bin/convert
- --with-unzip=/usr/bin/unzip"
- if use motif; then
- myconf="${myconf} --with-x --with-target=motif"
- else
- myconf="${myconf} --with-x --with-target=x11"
- fi
- if use nsplugin; then
- myconf="${myconf} --with-plugindir=/usr/$(get_libdir)/${PLUGINS_DIR}"
- fi
- if use sox; then
- myconf="${myconf} --with-soundconv=/usr/bin/sox"
- fi
- if use spidermonkey; then
- # disable the checks for other js libs, in case they are installed
- myconf="${myconf} --disable-mozilla-js --disable-xulrunner-js --disable-firefox-js --disable-seamonkey-js"
- # spidermonkey has no pkg-config, so override ./configure
- JAVASCRIPT_ENGINE_CFLAGS="-I/usr/include/js -DXP_UNIX"
- JAVASCRIPT_ENGINE_LIBS="-ljs"
- if has_version dev-lang/spidermonkey[threadsafe] ; then
- JAVASCRIPT_ENGINE_CFLAGS="${JAVASCRIPT_ENGINE_CFLAGS} -DJS_THREADSAFE $(pkg-config --cflags nspr)"
- JAVASCRIPT_ENGINE_LIBS="$(pkg-config --libs nspr) ${JAVASCRIPT_ENGINE_LIBS}"
- fi
- export JAVASCRIPT_ENGINE_CFLAGS
- export JAVASCRIPT_ENGINE_LIBS
- else
- # more hack to get around expat being grabbed from xulrunner
- myconf="${myconf} --with-expat=${S}/src/lib"
- fi
- econf ${myconf} \
- $(use_enable curl libcurl) \
- $(use_with glew) \
- $(use_enable debug) $(use_enable debug thread_colorized) \
- $(use_enable libeai) \
- $(use_enable nsplugin plugin) \
- $(use_enable static) \
- $(use_enable sox sound)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- # remove unneeded .la files (as per Flameeyes' rant)
- cd "${D}"
- rm "usr/$(get_libdir)"/*.la "usr/$(get_libdir)/${PLUGINS_DIR}"/*.la
-}