diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-24 18:40:41 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-24 18:40:41 +0000 |
commit | aba3fe1815fa79dad186a5e4dda82e6dff1fce44 (patch) | |
tree | e85bfabaf355ea008cec3dc33a70a7b0cf6dc815 /x11-misc | |
parent | Fix patch format so it applies. (diff) | |
download | gentoo-2-aba3fe1815fa79dad186a5e4dda82e6dff1fce44.tar.gz gentoo-2-aba3fe1815fa79dad186a5e4dda82e6dff1fce44.tar.bz2 gentoo-2-aba3fe1815fa79dad186a5e4dda82e6dff1fce44.zip |
Version bump wrt #306039.
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/parcellite/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/parcellite/parcellite-0.9.2.ebuild | 41 |
2 files changed, 49 insertions, 2 deletions
diff --git a/x11-misc/parcellite/ChangeLog b/x11-misc/parcellite/ChangeLog index f23fe6a1ae7e..f4b23d6ea4fa 100644 --- a/x11-misc/parcellite/ChangeLog +++ b/x11-misc/parcellite/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/parcellite -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v 1.7 2009/10/03 17:08:25 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v 1.8 2010/02/24 18:40:41 ssuominen Exp $ + +*parcellite-0.9.2 (24 Feb 2010) + + 24 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> + +parcellite-0.9.2.ebuild: + Version bump wrt #306039. 03 Oct 2009; Markus Meier <maekke@gentoo.org> parcellite-0.9.1.ebuild: amd64/x86 stable, bug #287314 diff --git a/x11-misc/parcellite/parcellite-0.9.2.ebuild b/x11-misc/parcellite/parcellite-0.9.2.ebuild new file mode 100644 index 000000000000..48f18e62f045 --- /dev/null +++ b/x11-misc/parcellite/parcellite-0.9.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/parcellite-0.9.2.ebuild,v 1.1 2010/02/24 18:40:41 ssuominen Exp $ + +EAPI=2 +inherit fdo-mime + +DESCRIPTION="A lightweight GTK+ based clipboard manager." +HOMEPAGE="http://parcellite.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=x11-libs/gtk+-2.10:2 + >=dev-libs/glib-2.14:2" +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( sys-devel/gettext + dev-util/intltool )" + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |