diff options
author | Peter Volkov <pva@gentoo.org> | 2010-01-16 13:55:54 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-01-16 13:55:54 +0000 |
commit | d0f0cbeb5857d6a2ed536236b4a899c9df00b1af (patch) | |
tree | fb6d497387e286dc6ad9367aacb85e11a3832b4a /x11-plugins | |
parent | Stable on alpha, bug #294185 (diff) | |
download | gentoo-2-d0f0cbeb5857d6a2ed536236b4a899c9df00b1af.tar.gz gentoo-2-d0f0cbeb5857d6a2ed536236b4a899c9df00b1af.tar.bz2 gentoo-2-d0f0cbeb5857d6a2ed536236b4a899c9df00b1af.zip |
Version bump.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/purple-plugin_pack/ChangeLog | 10 | ||||
-rw-r--r-- | x11-plugins/purple-plugin_pack/purple-plugin_pack-2.6.2.ebuild | 65 |
2 files changed, 73 insertions, 2 deletions
diff --git a/x11-plugins/purple-plugin_pack/ChangeLog b/x11-plugins/purple-plugin_pack/ChangeLog index 2f2fac5c6a30..e2c6b6f99390 100644 --- a/x11-plugins/purple-plugin_pack/ChangeLog +++ b/x11-plugins/purple-plugin_pack/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/purple-plugin_pack -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/purple-plugin_pack/ChangeLog,v 1.26 2009/12/21 20:53:01 pva Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/purple-plugin_pack/ChangeLog,v 1.27 2010/01/16 13:55:54 pva Exp $ + +*purple-plugin_pack-2.6.2 (16 Jan 2010) + + 16 Jan 2010; Peter Volkov <pva@gentoo.org> + +purple-plugin_pack-2.6.2.ebuild: + Version bump. *purple-plugin_pack-2.6.1 (21 Dec 2009) diff --git a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.6.2.ebuild b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.6.2.ebuild new file mode 100644 index 000000000000..0548edc25bed --- /dev/null +++ b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.6.2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.6.2.ebuild,v 1.1 2010/01/16 13:55:54 pva Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="A package with many different plugins for pidgin and libpurple" +HOMEPAGE="http://plugins.guifications.org" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="debug gtk ncurses spell talkfilters" + +RDEPEND="net-im/pidgin[gtk?,ncurses?] + talkfilters? ( app-text/talkfilters ) + spell? ( app-text/gtkspell )" +DEPEND="${RDEPEND} + dev-lang/python" + +list_plugins_dep() { + local dependency=${1} + grep -EH "depends.*$dependency" */plugins.cfg | sed 's:/.*::' +} + +src_configure() { + local plugins="" + + # list all plugins, then pull DISABLED_PLUGINS with the ones we don't need + plugins="$(python plugin_pack.py -d dist_dirs)" + einfo "List of all possible plugins:" + einfo "${plugins}" + + eval DISABLED_PLUGINS="\$${PN//[^a-z]/_}_DISABLED_PLUGINS" + # disable known broken plugins + DISABLED_PLUGINS+=" schedule findip" + use gtk || DISABLED_PLUGINS+=" $(list_plugins_dep pidgin)" + use ncurses || DISABLED_PLUGINS+=" $(list_plugins_dep finch)" + use spell || DISABLED_PLUGINS+=" $(list_plugins_dep gtkspell)" + use talkfilters || DISABLED_PLUGINS+=" $(list_plugins_dep talkfiltersbin)" + + for plug in ${DISABLED_PLUGINS}; do + plugins="${plugins//${plug}}" + done + + plugins="$(echo ${plugins} | sed 's:[ \t]\+:,:g;s:,$::;s:^,::')" + + econf \ + --with-plugins="${plugins}" \ + $(use_enable debug) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README VERSION || die +} + +pkg_preinst() { + elog "Note: if you want to disable some plugins in pack, define" + elog "${PN//[^a-z]/_}_DISABLED_PLUGINS with a list of plugins to" + elog "skip during install (for list see einfo in build output)." +} |