blob: 0e2b70d97b17a27b4ba2324bcd0e19dcef504e68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils gnome2-utils
# get the major version from PV
MV="${PV:0:1}"
MY_PN="sublime_text_${MV}"
MY_P="Sublime%20Text"
S="${WORKDIR}/${MY_PN}"
DESCRIPTION="Sophisticated text editor for code, markup and prose"
HOMEPAGE="http://www.sublimetext.com"
BASE_URI="http://c758482.r82.cf2.rackcdn.com"
SRC_URI="amd64? ( ${BASE_URI}/${MY_PN}_build_${PV}_x64.tar.bz2 )
x86? ( ${BASE_URI}/${MY_PN}_build_${PV}_x32.tar.bz2 )"
LICENSE="Sublime"
SLOT="${MV}"
KEYWORDS="~amd64 ~x86"
IUSE="multislot dbus"
RESTRICT="bindist mirror strip"
DEPEND=">=media-libs/libpng-1.2.46
>=x11-libs/gtk+-2.24.8-r1:2
multislot? ( app-admin/eselect-sublime )
dbus? ( sys-apps/dbus )"
RDEPEND="${DEPEND}"
QA_PREBUILT="*"
pkg_nofetch() {
eerror "Sublime Text official site seems to be unresponsive."
}
src_install() {
insinto /opt/${MY_PN}
into /opt/${MY_PN}
exeinto /opt/${MY_PN}
doins -r "Icon"
doins -r "Packages"
doins "python3.3.zip"
doins "sublime.py"
doins "sublime_plugin.py"
doexe "sublime_text"
doexe "plugin_host"
dosym "/opt/${MY_PN}/sublime_text" /usr/bin/subl${MV}
local size
for size in 16 32 48 128 256 ; do
insinto /usr/share/icons/hicolor/${size}x${size}/apps
newins "Icon/${size}x${size}/sublime-text.png" sublime_text.png
done
make_desktop_entry "subl${MV} %F" "Sublime Text ${MV}" sublime_text "Development;TextEditor" "StartupNotify=true"
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
if use multislot; then
eselect_sublime_update
else
einfo "using major version ${MV} as default"
dosym /usr/bin/subl${MV} /usr/bin/subl
fi
}
pkg_postrm() {
gnome2_icon_cache_update
}
eselect_sublime_update() {
einfo
elog "Updating Sublime Text to the latest installed version"
elog "you can select the version you want to use just using"
elog
elog "eselect sublime set sublime_text_2"
einfo
eselect sublime set sublime_text_${MV} --use-old
}
|