diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-04-12 22:54:12 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-04-12 22:54:12 +0000 |
commit | 4553e0a0ec806719282584257a863a63f1201027 (patch) | |
tree | ba687f3cc5d32072f5a5603e7d124b473e7af813 /x11-misc/xdg-utils | |
parent | cleanup previous test commits (diff) | |
download | gentoo-2-4553e0a0ec806719282584257a863a63f1201027.tar.gz gentoo-2-4553e0a0ec806719282584257a863a63f1201027.tar.bz2 gentoo-2-4553e0a0ec806719282584257a863a63f1201027.zip |
Bump to 1.0.2-r3. Install default XDG_DATA_DIRS, bug #264647. Add xset to RDEPEND, bug #256211.
(Portage version: 2.2_rc29/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xdg-utils')
-rw-r--r-- | x11-misc/xdg-utils/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/xdg-utils/xdg-utils-1.0.2-r3.ebuild | 51 |
2 files changed, 59 insertions, 1 deletions
diff --git a/x11-misc/xdg-utils/ChangeLog b/x11-misc/xdg-utils/ChangeLog index 23f37414e121..e82691a6e3f5 100644 --- a/x11-misc/xdg-utils/ChangeLog +++ b/x11-misc/xdg-utils/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/xdg-utils # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-utils/ChangeLog,v 1.47 2009/02/02 18:49:12 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-utils/ChangeLog,v 1.48 2009/04/12 22:54:12 eva Exp $ + +*xdg-utils-1.0.2-r3 (12 Apr 2009) + + 12 Apr 2009; Gilles Dartiguelongue <eva@gentoo.org> + +xdg-utils-1.0.2-r3.ebuild: + Bump to 1.0.2-r3. Install default XDG_DATA_DIRS, bug #264647. Add xset to + RDEPEND, bug #256211. 02 Feb 2009; Tomas Chvatal <scarabeus@gentoo.org> +files/xdg-utils-1.0.2-xdgopen-kde.patch, xdg-utils-1.0.2-r2.ebuild: diff --git a/x11-misc/xdg-utils/xdg-utils-1.0.2-r3.ebuild b/x11-misc/xdg-utils/xdg-utils-1.0.2-r3.ebuild new file mode 100644 index 000000000000..5d1f4d0924e3 --- /dev/null +++ b/x11-misc/xdg-utils/xdg-utils-1.0.2-r3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-utils/xdg-utils-1.0.2-r3.ebuild,v 1.1 2009/04/12 22:54:12 eva Exp $ + +inherit eutils + +DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop interoperability" +HOMEPAGE="http://portland.freedesktop.org/wiki" +SRC_URI="http://portland.freedesktop.org/download/${P}.tgz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc" + +# Report ?, some tests need root access +RESTRICT="test" + +RDEPEND="x11-apps/xprop + x11-misc/shared-mime-info + x11-apps/xset" +PDEPEND="dev-util/desktop-file-utils" +DEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}"/scripts + epatch "${FILESDIR}"/${P}-arb-comm-exec.patch \ + "${FILESDIR}"/${P}-kdedirs.patch \ + "${FILESDIR}"/${P}-xdgopen-kde.patch +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc ChangeLog README RELEASE_NOTES TODO || die "dodoc failed." + newdoc scripts/README README.scripts || die "newdoc failed." + use doc && dohtml -r scripts/html || die "dohtml failed." + + # Install default XDG_DATA_DIRS, bug #264647 + echo 'XDG_DATA_DIRS="/usr/local/share"' > 30xdg-data-local + echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 30xdg-data-local + doenvd 30xdg-data-local || die "doenv failed" + + echo 'XDG_DATA_DIRS="/usr/share"' > 90xdg-data-base + echo 'XDG_CONFIG_DIRS="/etc/xdg"' >> 90xdg-data-base + doenvd 90xdg-data-base || die "doenv failed" +} + +pkg_postinst() { + elog "Install >=x11-libs/gtk+-2 if you need command gtk-update-icon-cache." +} |