blob: 2981cd45f0c634c44e0c69c4e5bac957c1c291ec (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit cmake-utils bzr
# Launchpad repository where "cairo-dock" lives:
EBZR_REPO_URI="lp:cairo-dock-core"
# You can specify a certain revision from the repository here.
# Or comment it out to choose the latest ("live") revision.
#EBZR_REVISION="959"
DESCRIPTION="Cairo-dock is a fast, responsive, Mac OS X-like dock."
HOMEPAGE="https://launchpad.net/cairo-dock-core/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="xcomposite"
# Installation instructions (from BZR source) and dependencies are listed here:
# http://glx-dock.org/ww_page.php?p=From%20BZR&lang=en
RDEPEND="
dev-libs/dbus-glib
dev-libs/glib:2
dev-libs/libxml2
gnome-base/librsvg
sys-apps/dbus
x11-libs/cairo
x11-libs/gtk+:2
x11-libs/gtkglext
x11-libs/libXrender
net-misc/curl
x11-libs/pango
xcomposite? (
x11-libs/libXcomposite
x11-libs/libXinerama
x11-libs/libXtst
)
"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext
"
pkg_setup()
{
ewarn ""
ewarn ""
ewarn "THIS IS A LIVE EBUILD, NOT AN OFFICIAL RELEASE."
ewarn " Thus, it may FAIL to build properly."
ewarn ""
ewarn "This ebuild is not supported by an Gentoo developer."
ewarn " So please do NOT report bugs to Gentoo's bugzilla."
ewarn " Instead, report all bugs to write2david@gmail.com"
ewarn ""
ewarn ""
# Dealing with the weird behavior of cairo-dock installing
# stuff under "/usr/usr/lib" for 32-bit systems.
# Also, the weird reported behavior of cairo-dock installing
# stuff under "/usr/usr/lib6464" for 64-bit system.
# We are doing this so that files actually get placed into the normal directory
mkdir /usr/usr
ln -s /usr/lib /usr/usr/lib
ln -s /usr/lib64 /usr/usr/lib6464/
# Note that the first 'ln' will fail if we're on a 64-bit system. That's
# okay.
# Note that the second 'ln' will fail if we're on a 32-bit system. THat's
# okay.
}
src_prepare() {
bzr_src_prepare
}
# Not sure what the next line does. Can't find any documentation about it.
# Maybe it does nothing? It came from someone else's old ebuild for
# cairo-dock. Help?!
#MAKE_IN_SOURCE_BUILD=true
src_configure() {
# Next line added because of the same issues/solutions reported on...
# ... # https://bugs.launchpad.net/cairo-dock-plug-ins/+bug/922981
#
# With a solution inspired on...
# http://code.google.com/p/rion-overlay/source/browse/x11-misc/cairo-dock-plugins/cairo-dock-plugins-2.3.9999.ebuild?spec=svn71d4acbbb8c297b818ff886fb5dd434a6f54c377&r=71d4acbbb8c297b818ff886fb5dd434a6f54c377
# These CMAKE variables are listed on the BZR installation instructions
# (link above)
# Some more info...
# http://www.cmake.org/Wiki/CMake_Useful_Variables
mycmakeargs="${mycmakeargs} -DROOT_PREFIX=${D} -DCMAKE_INSTALL_PREFIX=/usr"
cmake-utils_src_configure
}
pkg_postinst() {
ewarn ""
ewarn ""
ewarn "THIS IS A LIVE EBUILD, NOT AN OFFICIAL RELEASE."
ewarn " Thus, it may FAIL to run properly."
ewarn " Please do NOT report bugs to Gentoo's bugzilla."
ewarn " Instead, report all bugs to write2david@gmail.com"
ewarn ""
ewarn ""
}
|