blob: db1de1ce8d61b57d7dfc13d72ea14c7247adc808 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-user-dirs-gtk/xdg-user-dirs-gtk-0.8-r1.ebuild,v 1.13 2012/05/05 04:53:47 jdhore Exp $
EAPI=2
inherit gnome.org
DESCRIPTION="xdg-user-dirs-gtk integrates xdg-user-dirs into the Gnome desktop and Gtk+ applications"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/xdg-user-dirs"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
IUSE=""
RDEPEND=">=x11-misc/xdg-user-dirs-0.13
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.35
virtual/pkgconfig"
src_prepare() {
sed -i \
-e '/Encoding/d' \
-e 's:OnlyShowIn=GNOME:NotShowIn=KDE:' \
user-dirs-update-gtk.desktop.in || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
}
pkg_postinst() {
elog
elog " This package tries to automatically use some sensible default "
elog " directories for you documents, music, video and other stuff "
elog
elog " If you want to change those directories to your needs, see "
elog " the settings in ~/.config/user-dir.dirs "
elog
}
|