From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4413B1382FF for ; Sat, 9 Jul 2016 01:58:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 377CE21C051; Sat, 9 Jul 2016 01:58:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48ABBE0AF0 for ; Sat, 9 Jul 2016 01:58:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F4D9340FA2 for ; Sat, 9 Jul 2016 01:58:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D4752445 for ; Sat, 9 Jul 2016 01:58:37 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1468029460.2906664f97991195c9b476a0b5be7b673226d46a.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opencollada/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opencollada/opencollada-9999.ebuild X-VCS-Directories: media-libs/opencollada/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 2906664f97991195c9b476a0b5be7b673226d46a X-VCS-Branch: master Date: Sat, 9 Jul 2016 01:58:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 84d6c8a7-c535-4058-a16f-52a66e91e57f X-Archives-Hash: d2b2cd0e975fedb710ef98af95d29082 commit: 2906664f97991195c9b476a0b5be7b673226d46a Author: Jonathan Scruggs gmail com> AuthorDate: Fri Jul 8 18:05:28 2016 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Sat Jul 9 01:57:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2906664f media-libs/opencollada: Remove live ebuild as it's no longer needed media-libs/opencollada/opencollada-9999.ebuild | 77 -------------------------- 1 file changed, 77 deletions(-) diff --git a/media-libs/opencollada/opencollada-9999.ebuild b/media-libs/opencollada/opencollada-9999.ebuild deleted file mode 100644 index 53164b4..0000000 --- a/media-libs/opencollada/opencollada-9999.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -EGIT_REPO_URI="https://github.com/KhronosGroup/OpenCOLLADA.git" -inherit multilib cmake-utils -[[ ${PV} == "9999" ]] && inherit git-r3 - -DESCRIPTION="Stream based read/write library for COLLADA files" -HOMEPAGE="http://www.opencollada.org/" -[[ ${PV} == "9999" ]] || \ - SRC_URI="https://github.com/KhronosGroup/OpenCOLLADA/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -[[ ${PV} == "9999" ]] || \ - KEYWORDS="~amd64 ~ppc64 ~x86" \ - S="${WORKDIR}"/OpenCOLLADA-${PV} - -IUSE="expat static-libs" - -# This is still needed to have so version numbers -MY_SOVERSION="1.6" - -RDEPEND="dev-libs/libpcre - dev-libs/zziplib - media-libs/lib3ds - sys-libs/zlib - expat? ( dev-libs/expat ) - !expat? ( dev-libs/libxml2 )" -DEPEND="${RDEPEND}" - -# This is needed or you get an error on install -BUILD_DIR="${S}"/build - -PATCHES=( - "${FILESDIR}"/${PN}-0_p864-expat.patch - "${FILESDIR}"/${PN}-1.2.2-soversion.patch - "${FILESDIR}"/${PN}-1.2.2-no-undefined.patch - "${FILESDIR}"/${PN}-1.2.2-libdir.patch -) - -src_prepare() { - edos2unix CMakeLists.txt - - default - - # Remove bundled depends that have portage equivalents - rm -R Externals/{expat,lib3ds,LibXML,pcre,zlib,zziplib} || die - - # Remove unused build systems - rm Makefile scripts/{unixbuild.sh,vcproj2cmake.rb} || die - find "${S}" -name SConscript -delete || die -} - -src_configure() { - local mycmakeargs=( - -DUSE_SHARED=ON - -DUSE_STATIC=$(usex static-libs ON OFF) - -DUSE_EXPAT=$(usex expat ON OFF) - -DUSE_LIBXML=$(usex !expat ON OFF) - -Dsoversion=${MY_SOVERSION} - ) - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - echo "LDPATH=/usr/$(get_libdir)/opencollada" > "${T}"/99${PN}; \ - doenvd "${T}"/99${PN} - - dobin build/bin/OpenCOLLADAValidator -}