diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-01 15:22:29 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-01 15:22:29 +0000 |
commit | ce11aa053b2ffb9d565d9d03b7168dc47b302c42 (patch) | |
tree | 75c0782730b99c25093dca532bff7e6a9a032291 /xfce-extra | |
parent | Switch to EAPI 4. Remove Copyright files. (diff) | |
download | gentoo-2-ce11aa053b2ffb9d565d9d03b7168dc47b302c42.tar.gz gentoo-2-ce11aa053b2ffb9d565d9d03b7168dc47b302c42.tar.bz2 gentoo-2-ce11aa053b2ffb9d565d9d03b7168dc47b302c42.zip |
Version bump.
(Portage version: 2.2.0_alpha71_p73/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-smartbookmark-plugin/ChangeLog | 8 | ||||
-rw-r--r-- | xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.4.ebuild | 40 |
2 files changed, 47 insertions, 1 deletions
diff --git a/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog b/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog index 962fdcf64a75..0e1bd97c31bd 100644 --- a/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog +++ b/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for xfce-extra/xfce4-smartbookmark-plugin # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog,v 1.3 2011/01/29 16:07:54 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/ChangeLog,v 1.4 2011/11/01 15:22:29 ssuominen Exp $ + +*xfce4-smartbookmark-plugin-0.4.4 (01 Nov 2011) + + 01 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> + +xfce4-smartbookmark-plugin-0.4.4.ebuild: + Version bump. 29 Jan 2011; Samuli Suominen <ssuominen@gentoo.org> xfce4-smartbookmark-plugin-0.4.2.ebuild, diff --git a/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.4.ebuild b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.4.ebuild new file mode 100644 index 000000000000..847fea5d48d5 --- /dev/null +++ b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.4.4.ebuild,v 1.1 2011/11/01 15:22:29 ssuominen Exp $ + +EAPI=4 +inherit xfconf + +DESCRIPTION="Smart bookmark plug-in for the Xfce desktop environment" +HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin" +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/0.4/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" +IUSE="debug" + +COMMON_DEPEND="x11-libs/gtk+:2 + x11-libs/libX11 + >=xfce-base/libxfcegui4-4.8 + >=xfce-base/xfce4-panel-4.8" +RDEPEND="${COMMON_DEPEND} + >=xfce-base/xfce-utils-4.8" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + dev-util/pkgconfig + sys-devel/gettext" + +pkg_setup() { + XFCONF=( + --disable-static + $(xfconf_use_debug) + ) + + DOCS=( AUTHORS ChangeLog NEWS README ) +} + +src_prepare() { + sed -i -e 's:bugs.debian:bugs.gentoo:' src/smartbookmark.c || die + xfconf_src_prepare +} |