public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Sterrett" <mr_bones_@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/ode/
Date: Tue,  7 Jun 2016 22:27:56 +0000 (UTC)	[thread overview]
Message-ID: <1465338451.a03a7daa4e68dca928912d0ed4a1db52527caaf0.mr_bones_@gentoo> (raw)

commit:     a03a7daa4e68dca928912d0ed4a1db52527caaf0
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  7 17:15:19 2016 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 22:27:31 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a03a7daa

dev-games/ode: clean old

Package-Manager: portage-2.2.28

 dev-games/ode/Manifest        |  1 -
 dev-games/ode/ode-0.13.ebuild | 75 -------------------------------------------
 2 files changed, 76 deletions(-)

diff --git a/dev-games/ode/Manifest b/dev-games/ode/Manifest
index 36689e9..f81e11d 100644
--- a/dev-games/ode/Manifest
+++ b/dev-games/ode/Manifest
@@ -1,4 +1,3 @@
 DIST ode-0.11.1.tar.bz2 1720088 SHA256 877884a86a3d53f3c5f2e35fbd8a3dc23c20249f0636c76f6ef41f6bf57a03a1 SHA512 1e015231f4d01c68e7539144d197031cca23d4b58ea53733184a826ce23388956c428a53385254e7eed2c5d3fc28224a688eb13be7ea648bd78e186c8f203d37 WHIRLPOOL a77c4a61b1dd551911e87a2233f279ac5e6cdea9abf1704574f2a42ab683a426b7fc2a8e9b422f80ca379532b7d755cf7d28f1a47948dd80444cff8c7796cd32
 DIST ode-0.12.tar.bz2 1816246 SHA256 65c5315a42c725d2da01ea2c1b045583d54e0d1a95e3f7c062e5ba3769f5c350 SHA512 303ffda8afcb89a87d09c44393f590f5646f10e8959ca06746121859ad2407709cd711ab185fed4817a9f74c9ca4ee13d1698a28577211bf65dbaad1141f6fc0 WHIRLPOOL def7dfd7bb9f78db9c593bb99eb635da9868dd05362817ca344e583ca157da87c3e6932b9912684bc3deed2aff9eeb409d57fd9eb388e2f195f9c83b5cccabc4
-DIST ode-0.13.tar.bz2 2008288 SHA256 34ce3e236e313bf109a0cb5546d2fca462aed99f29a42e62bc1463b803c31ef9 SHA512 d30c5228e10df5784802ceaea08353a3fd1088450b2ba69ad1da840b8aad2224484e5642145820621e105e08aa6da6f3e9957780d4c3b047647558b1abc32780 WHIRLPOOL ab7283fb0c957c0bac334150c4dc4d342a200fb1bfdeb26cbd8da13f0a8699bc9664af7a0cb9d0211d7484dc56a4608b8b4a60e81cf1008b5feff534733dbdb4
 DIST ode-0.14.tar.gz 2132897 SHA256 1072fc98d9d00262a0d6136e7b9ff7f5d953bbdb23b646f426909d28c0b4f6db SHA512 356c3edd10274a00516c459035180c74e611fffba42b7674fbf1ee5225a27b54dfeb5eeeaa2ff85ecd2fdea5f634e2732df38333b58c4a43f7befa25ba321927 WHIRLPOOL 542867795477b03dd3268ee5e9d54c86990b67016084b8ef68364615fc0eb6e7f0264b5180e7c4bc0ef972234ede26ccb652505b95958e412286addfa5b56591

diff --git a/dev-games/ode/ode-0.13.ebuild b/dev-games/ode/ode-0.13.ebuild
deleted file mode 100644
index 2f22678..0000000
--- a/dev-games/ode/ode-0.13.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Open Dynamics Engine SDK"
-HOMEPAGE="http://ode.org/"
-SRC_URI="mirror://sourceforge/opende/${P}.tar.bz2"
-
-LICENSE="|| ( LGPL-2.1+ BSD )"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="debug doc double-precision examples gyroscopic static-libs"
-
-RDEPEND="examples? (
-	virtual/glu
-	virtual/opengl )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )"
-
-MY_EXAMPLES_DIR=/usr/share/doc/${PF}/examples
-
-src_prepare() {
-	sed -i \
-		-e "s:\$.*/drawstuff/textures:${MY_EXAMPLES_DIR}:" \
-		drawstuff/src/Makefile.in \
-		ode/demo/Makefile.in || die
-}
-
-src_configure() {
-	# use bash (bug #335760)
-	CONFIG_SHELL=/bin/bash \
-	econf \
-		--enable-shared \
-		$(use_enable static-libs static) \
-		$(use_enable debug asserts) \
-		$(use_enable double-precision) \
-		$(use_enable examples demos) \
-		$(use_enable gyroscopic) \
-		$(use_with examples drawstuff X11)
-}
-
-src_compile() {
-	emake
-	if use doc ; then
-		cd ode/doc
-		doxygen Doxyfile || die
-	fi
-}
-
-src_install() {
-	DOCS="CHANGELOG.txt README.txt" \
-		default
-	prune_libtool_files
-	if use doc ; then
-		dohtml docs/*
-	fi
-	if use examples; then
-		docompress -x "${MY_EXAMPLES_DIR}"
-		insinto "${MY_EXAMPLES_DIR}"
-		exeinto "${MY_EXAMPLES_DIR}"
-		doexe drawstuff/dstest/dstest
-		doins ode/demo/*.{c,cpp,h} \
-			drawstuff/textures/*.ppm \
-			drawstuff/dstest/dstest.cpp \
-			drawstuff/src/{drawstuff.cpp,internal.h,x11.cpp}
-		cd ode/demo
-		local f
-		for f in *.c* ; do
-			doexe .libs/${f%.*}
-		done
-	fi
-}


             reply	other threads:[~2016-06-07 22:28 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-07 22:27 Michael Sterrett [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-11  7:37 [gentoo-commits] repo/gentoo:master commit in: dev-games/ode/ Ionen Wolkens
2021-12-14  9:04 Sam James
2021-04-19 20:54 Sam James
2018-04-29 11:44 Patrice Clement
2018-04-26  4:21 Matt Turner
2018-04-23  3:08 Aaron Bauman
2017-01-16 22:31 Ian Stakenvicius
2016-04-07 17:23 Michael Sterrett
2015-12-30  7:51 Michael Sterrett
2015-12-18  0:47 Michael Sterrett

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1465338451.a03a7daa4e68dca928912d0ed4a1db52527caaf0.mr_bones_@gentoo \
    --to=mr_bones_@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox