mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Marco Scardovi <marco@scardovi.com>
89 lines
2.1 KiB
Bash
89 lines
2.1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit desktop optfeature xdg
|
|
|
|
DESCRIPTION="A hackable text editor for the 21st Century"
|
|
HOMEPAGE="https://atom.io/"
|
|
SRC_URI="https://github.com/atom/atom/releases/download/v${PV}/atom-amd64.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
RESTRICT="test"
|
|
|
|
S="${WORKDIR}/atom-${PV}-amd64"
|
|
|
|
RDEPEND="
|
|
app-accessibility/at-spi2-atk
|
|
app-accessibility/at-spi2-core
|
|
app-crypt/libsecret
|
|
dev-libs/atk
|
|
dev-libs/nss
|
|
dev-libs/openssl
|
|
dev-libs/openssl-compat
|
|
dev-vcs/git
|
|
media-libs/alsa-lib
|
|
net-print/cups
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf
|
|
x11-libs/gtk+
|
|
x11-libs/libnotify
|
|
x11-libs/libX11
|
|
x11-libs/libxcb
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXcursor
|
|
x11-libs/libXdamage
|
|
x11-libs/libXext
|
|
x11-libs/libXfixes
|
|
x11-libs/libXi
|
|
x11-libs/libxkbfile
|
|
x11-libs/libXrandr
|
|
x11-libs/libXrender
|
|
x11-libs/libXScrnSaver
|
|
x11-libs/libXtst
|
|
x11-libs/pango
|
|
"
|
|
|
|
QA_PREBUILT="/opt/${PN}/*"
|
|
QA_PRESTRIPPED="/opt/${PN}/resources/*" # Files are already stripped
|
|
|
|
DOCS=( resources/LICENSE.md )
|
|
|
|
src_prepare(){
|
|
default
|
|
}
|
|
|
|
src_install(){
|
|
insinto /opt/"${PN}"
|
|
doins -r "${S}"/*
|
|
dosym ../../opt/"${PN}"/atom "${EPREFIX}"/usr/bin/atom
|
|
fperms +x /opt/"${PN}"/atom
|
|
|
|
# I will use only npm provided with package itself
|
|
# as nodejs is not required to make it working (and it is really big).
|
|
fperms +x /opt/"${PN}"/resources/app/apm/bin/apm
|
|
fperms +x /opt/"${PN}"/resources/app/apm/bin/node
|
|
fperms +x /opt/"${PN}"/resources/app/apm/bin/npm
|
|
|
|
doicon atom.png
|
|
make_desktop_entry "/opt/atom-bin/atom %U" "Atom" "atom" \
|
|
"GNOME;GTK;Utility;TextEditor;Development;" \
|
|
"GenericName=Text Editor\nMimeType=text/plain;\nStartupNotify=true\nStartupWMClass=atom"
|
|
|
|
einstalldocs
|
|
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|
|
|
|
pkg_postinst(){
|
|
xdg_desktop_database_update
|
|
optfeature_header "If you want to use atom-beautify please install following packages:"
|
|
optfeature "python code beautifier" dev-python/autopep8
|
|
optfeature "python code beautifier" dev-python/black
|
|
optfeature "shell code beautifier" dev-util/beautysh
|
|
optfeature "C, C++, Java code beautifier" dev-util/uncrustify
|
|
}
|