mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 20:08:43 -04:00
net-misc/rustdesk: make pkgcheck happy
This commit is contained in:
parent
44059e05de
commit
2af498eda6
27
licenses/Fuchsia
Normal file
27
licenses/Fuchsia
Normal file
@ -0,0 +1,27 @@
|
||||
Copyright 2019 The Fuchsia Authors. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following disclaimer
|
||||
in the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
* Neither the name of Google Inc. nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
licenses/Sciter
Normal file
25
licenses/Sciter
Normal file
@ -0,0 +1,25 @@
|
||||
Sciter Engine ™ Software Product.
|
||||
END USER LICENSE AGREEMENT
|
||||
This End User License Agreement is not a sales contract but an agreement between Terra Informatica Software, Inc. and you regarding the use of the software - the Sciter. Installing this software implies that you agree to the terms of this agreement. If you disagree with any part of this license agreement, do not install the software.
|
||||
|
||||
"Sciter Engine Software Product" shall mean one of sciter.dll, sciter.dylib and sciter.so - dynamically linked library (DLL) that contain embeddable Sciter Engine, the software programs and files needed to integrate the Sciter Engine with a software application, including documentation, examples, include files, declarations, source code, utility programs, and libraries.
|
||||
|
||||
1. RIGHT TO USE THE SOFTWARE
|
||||
Terra Informatica Software, Inc. gives you the right to use this software in accordance with the terms of this agreement.
|
||||
|
||||
You may utilize sciter.dll in any manner you see fit (subject to the limitations outlined in this license) to build commercial or non-commercial applications and components.
|
||||
|
||||
Your application shall include link to Terra Informatica site in "About" dialog or similar place in your application. Text of the link: This Application (or Component) uses Sciter Engine (http://sciter.com/), copyright Terra Informatica Software, Inc.
|
||||
|
||||
We will be delighted (but not demand) if you will place link to http://sciter.com/ on the web page of your product using the Sciter.
|
||||
|
||||
2. COPYRIGHT
|
||||
The copyright and intellectual property rights of this software and its documentation and packaging are owned by Terra Informatica Software, Inc. and are protected by the copyright laws of Canada and international intellectual property right treaties.
|
||||
|
||||
3. LIMITATION OF WARRANTY
|
||||
Trying to satisfy your needs as much as possible Terra Informatica Software, Inc. does not warrant though that using this software will fit a user's particular purpose, and is not liable for any damages caused by the use of this software.
|
||||
|
||||
4. ACKNOWLEDGEMENT
|
||||
You acknowledge that you have read and understand this license agreement and that you agree to its terms. You acknowledge that this agreement has priority over any order, engagement, advertisement, or other written agreement which precedes it.
|
||||
|
||||
Terra Informatica Software, Inc. © 2006-2018, all rights reserved.
|
@ -794,20 +794,21 @@ SRC_URI="
|
||||
|
||||
mirror+${CARGO_CRATE_URIS}
|
||||
"
|
||||
RESTRICT="mirror"
|
||||
|
||||
LICENSE="AGPL-3"
|
||||
# Dependent crate licenses
|
||||
LICENSE+="
|
||||
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD Boost-1.0 CC0-1.0 Fuchsia
|
||||
GPL-2 GPL-3 GPL-3+ ISC MIT MPL-2.0 OpenSSL SSLeay Unicode-DFS-2016 Unlicense ZLIB
|
||||
Sciter end user license agreement
|
||||
GPL-2 GPL-3 GPL-3+ ISC MIT MPL-2.0 openssl SSLeay Unicode-DFS-2016 Unlicense ZLIB
|
||||
Sciter
|
||||
"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="wayland +hwaccel"
|
||||
|
||||
RESTRICT="mirror"
|
||||
|
||||
RDEPEND="
|
||||
media-libs/alsa-lib
|
||||
x11-libs/gtk+:3
|
||||
@ -837,24 +838,23 @@ QA_PRESTRIPPED="
|
||||
/usr/share/${PN}/libsciter-gtk.so
|
||||
"
|
||||
|
||||
|
||||
src_prepare() {
|
||||
PATCHES+=(
|
||||
${FILESDIR}/rust-sciter.patch
|
||||
"${FILESDIR}"/rust-sciter.patch
|
||||
)
|
||||
cd ${S}/..
|
||||
cd "${S}"/..
|
||||
|
||||
default
|
||||
|
||||
cd -
|
||||
cd ../rust-webm-*/src/sys || die
|
||||
rm -rf libwebm/ || die
|
||||
ln -s ${WORKDIR}/libwebm-libwebm-*/ libwebm || die
|
||||
ln -s "${WORKDIR}"/libwebm-libwebm-*/ libwebm || die
|
||||
|
||||
local _HWCODEC_COMMIT=`echo "${GIT_CRATES[hwcodec]}" | awk -F';' '{print $2}'`
|
||||
rm -rf ${WORKDIR}/hwcodec-*/deps ${WORKDIR}/hwcodec-${_HWCODEC_COMMIT}/externals || die
|
||||
ln -s ${WORKDIR}/deps-${_HWCODEC_DEPS_COMMIT} ${WORKDIR}/hwcodec-${_HWCODEC_COMMIT}/deps || die
|
||||
ln -s ${WORKDIR}/externals-${_HWCODEC_EXTERNALS_COMMIT} ${WORKDIR}/hwcodec-${_HWCODEC_COMMIT}/externals || die
|
||||
rm -rf "${WORKDIR}"/hwcodec-*/deps "${WORKDIR}"/hwcodec-${_HWCODEC_COMMIT}/externals || die
|
||||
ln -s "${WORKDIR}"/deps-${_HWCODEC_DEPS_COMMIT} "${WORKDIR}"/hwcodec-${_HWCODEC_COMMIT}/deps || die
|
||||
ln -s "${WORKDIR}"/externals-${_HWCODEC_EXTERNALS_COMMIT} "${WORKDIR}"/hwcodec-${_HWCODEC_COMMIT}/externals || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user