mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-util/clion: EAPI 6 bump.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
63
dev-util/clion/clion-2017.1-r1.ebuild
Normal file
63
dev-util/clion/clion-2017.1-r1.ebuild
Normal file
@@ -0,0 +1,63 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit eutils versionator
|
||||
|
||||
SLOT="0"
|
||||
PV_STRING="$(get_version_component_range 4-6)"
|
||||
MY_PV="$(get_version_component_range 1-3)"
|
||||
|
||||
SRC_URI="http://download.jetbrains.com/cpp/CLion-${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz"
|
||||
DESCRIPTION="A complete toolset for C and C++ development"
|
||||
HOMEPAGE="http://www.jetbrains.com/clion"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
LICENSE="IDEA
|
||||
|| ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )"
|
||||
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
sys-devel/gdb
|
||||
dev-util/cmake"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MY_PV}"
|
||||
|
||||
QA_PREBUILT="opt/${PN}-${MY_PV}/*"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
local remove_me=(
|
||||
bin/gdb
|
||||
bin/cmake
|
||||
license/GDB*
|
||||
license/CMake*
|
||||
plugins/tfsIntegration/lib/native/hpux
|
||||
plugins/tfsIntegration/lib/native/solaris
|
||||
)
|
||||
|
||||
use amd64 || remove_me+=( plugins/tfsIntegration/lib/native/linux/x86_64 )
|
||||
use arm || remove_me+=( bin/fsnotifier-arm plugins/tfsIntegration/lib/native/linux/arm )
|
||||
use ppc || remove_me+=( plugins/tfsIntegration/lib/native/linux/ppc )
|
||||
use x86 || remove_me+=( plugins/tfsIntegration/lib/native/linux/x86 )
|
||||
|
||||
rm -rv "${remove_me[@]}" || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local dir="/opt/${PN}-${MY_PV}"
|
||||
|
||||
insinto "${dir}"
|
||||
doins -r *
|
||||
fperms 755 "${dir}"/bin/{clion.sh,fsnotifier{,64}}
|
||||
|
||||
make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
|
||||
newicon "bin/${PN}.svg" "${PN}.svg"
|
||||
make_desktop_entry "${PN}" "clion" "${PN}" "Development;IDE;"
|
||||
|
||||
# recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
|
||||
mkdir -p "${D}/etc/sysctl.d/" || die
|
||||
echo "fs.inotify.max_user_watches = 524288" > "${D}/etc/sysctl.d/30-idea-inotify-watches.conf" || die
|
||||
}
|
||||
Reference in New Issue
Block a user