diff options
Diffstat (limited to 'x11-misc/cairo-dock/cairo-dock-2.1.3.9.ebuild')
-rw-r--r-- | x11-misc/cairo-dock/cairo-dock-2.1.3.9.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/x11-misc/cairo-dock/cairo-dock-2.1.3.9.ebuild b/x11-misc/cairo-dock/cairo-dock-2.1.3.9.ebuild deleted file mode 100644 index 9f6045d..0000000 --- a/x11-misc/cairo-dock/cairo-dock-2.1.3.9.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="3" - -inherit autotools eutils versionator - -MY_PV=$(replace_version_separator 3 -) -DESCRIPTION="Cairo-dock is a fast, responsive, Mac OS X-like dock." -HOMEPAGE="http://www.cairo-dock.org" -SRC_URI="http://launchpad.net/${PN}-core/$(get_version_component_range 1-2)/$(get_version_component_range 1-3)/+download/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="glitz xcomposite" - -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 - glitz? ( media-libs/glitz ) - xcomposite? ( - x11-libs/libXcomposite - x11-libs/libXinerama - x11-libs/libXtst - ) -" -DEPEND="${RDEPEND} - dev-util/intltool - dev-util/pkgconfig - sys-devel/gettext" - -#FIXME: Maybe a sed expression which solves the problem -# would be better ? -src_prepare() { - epatch "${FILESDIR}/${PN}-$(get_version_component_range 1-3)-safe-cflags.patch" - - # Fix infinite loop while processing po/Makefile.in - # and needed for patch above. - eautoreconf -} - -src_configure() { - econf $(use_enable glitz) $(use_enable xcomposite xextend) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" -} - -pkg_postinst() { - elog "Cairo-Dock is an app that draws on a RGBA GLX visual." - elog "Some users have noticed that if the dock is launched," - elog "severals qt4-based applications could crash, like skype or vlc." - elog "If you have this problem, add the following line into your bashrc :" - echo - elog "alias vlc='export XLIB_SKIP_ARGB_VISUALS=1; vlc; unset XLIB_SKIP_ARGB_VISUALS'" - elog "see http://www.qtforum.org/article/26669/qt4-mess-up-the-opengl-context.html for more details." -} |