diff options
-rw-r--r-- | kde-misc/kgtk/ChangeLog | 8 | ||||
-rw-r--r-- | kde-misc/kgtk/files/digest-kgtk-0.9.1 | 3 | ||||
-rw-r--r-- | kde-misc/kgtk/kgtk-0.9.1.ebuild | 36 |
3 files changed, 46 insertions, 1 deletions
diff --git a/kde-misc/kgtk/ChangeLog b/kde-misc/kgtk/ChangeLog index 126263a5fed7..1bc427208d1b 100644 --- a/kde-misc/kgtk/ChangeLog +++ b/kde-misc/kgtk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-misc/kgtk # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kgtk/ChangeLog,v 1.7 2007/01/05 17:01:45 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kgtk/ChangeLog,v 1.8 2007/10/03 22:11:58 genstef Exp $ + +*kgtk-0.9.1 (03 Oct 2007) + + 03 Oct 2007; Stefan Schweizer <genstef@gentoo.org> +kgtk-0.9.1.ebuild: + Version bump thanks to Lukasz Lukaszewicz <lukasz@arit.pl> in bug 194641 and + philantrop, also fixing bug 193852 05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> kgtk-0.7.ebuild, kgtk-0.8.ebuild: diff --git a/kde-misc/kgtk/files/digest-kgtk-0.9.1 b/kde-misc/kgtk/files/digest-kgtk-0.9.1 new file mode 100644 index 000000000000..74f79607798f --- /dev/null +++ b/kde-misc/kgtk/files/digest-kgtk-0.9.1 @@ -0,0 +1,3 @@ +MD5 48b3903c8bc711e2683321c3d7688cd5 KGtk-0.9.1.tar.bz2 38889 +RMD160 153148af1a86b1fc3df77089026fb8ba6e9df63a KGtk-0.9.1.tar.bz2 38889 +SHA256 90ffbd4bbd74b82b5a11a9414a1f0cb921a1f51149527b843f746432f5609b40 KGtk-0.9.1.tar.bz2 38889 diff --git a/kde-misc/kgtk/kgtk-0.9.1.ebuild b/kde-misc/kgtk/kgtk-0.9.1.ebuild new file mode 100644 index 000000000000..46ff87c5c91e --- /dev/null +++ b/kde-misc/kgtk/kgtk-0.9.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kgtk/kgtk-0.9.1.ebuild,v 1.1 2007/10/03 22:11:58 genstef Exp $ + +inherit kde + +DESCRIPTION="Allows *some* Gtk applications to use KDE's file dialogs when run under KDE" +HOMEPAGE="http://www.kde-apps.org/content/show.php?content=36077" +SRC_URI="http://home.freeuk.com/cpdrummond/KGtk-${PV}.tar.bz2" +S=$WORKDIR/KGtk-$PV + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=x11-libs/gtk+-2.6 + dev-util/cmake" +need-kde 3.4 + +src_compile() { + cmake \ + -DCMAKE_INSTALL_PREFIX:PATH=/usr \ + . || die "cmake (configure) failed" + + emake || die "emake failed" +} + +pkg_postinst() { + elog "To see the kde-file-selector in a gtk-application, just do:" + echo "cd /usr/local/bin" + echo "ln -s /usr/bin/kgtk-wrapper application(eg. firefox)" + elog "Make sure that /usr/local/bin is before /usr/bin in your \$PATH" + elog + elog "You need to restart kde and be sure to change your symlinks to non-.sh" +} |