diff options
author | Olivier Crête <tester@gentoo.org> | 2009-09-29 14:55:50 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-09-29 14:55:50 +0000 |
commit | ffbeacb85877e07e1669843367a8a57183bbe367 (patch) | |
tree | a460ee3b13208a000441adac8212577071f8c1ab /x11-plugins/purple-plugin_pack | |
parent | Version bump. (diff) | |
download | historical-ffbeacb85877e07e1669843367a8a57183bbe367.tar.gz historical-ffbeacb85877e07e1669843367a8a57183bbe367.tar.bz2 historical-ffbeacb85877e07e1669843367a8a57183bbe367.zip |
Remove old versions
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'x11-plugins/purple-plugin_pack')
4 files changed, 6 insertions, 227 deletions
diff --git a/x11-plugins/purple-plugin_pack/ChangeLog b/x11-plugins/purple-plugin_pack/ChangeLog index b38aeeb08f5a..db313930857a 100644 --- a/x11-plugins/purple-plugin_pack/ChangeLog +++ b/x11-plugins/purple-plugin_pack/ChangeLog @@ -1,6 +1,11 @@ # 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.24 2009/09/06 14:41:12 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/purple-plugin_pack/ChangeLog,v 1.25 2009/09/29 14:54:58 tester Exp $ + + 29 Sep 2009; Olivier Crête <tester@gentoo.org> + -purple-plugin_pack-2.2.0.ebuild, -purple-plugin_pack-2.3.0.ebuild, + -purple-plugin_pack-2.5.1.ebuild: + Remove old versions 06 Sep 2009; Markus Meier <maekke@gentoo.org> purple-plugin_pack-2.5.1-r1.ebuild: diff --git a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.2.0.ebuild b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.2.0.ebuild deleted file mode 100644 index 6e4bad5abca1..000000000000 --- a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.2.0.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2008 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.2.0.ebuild,v 1.8 2008/04/03 14:30:11 ranger Exp $ - -inherit eutils - -DESCRIPTION="A package with many different plugins for pidgin and libpurple" -HOMEPAGE="http://plugins.guifications.org" -SRC_URI="http://downloads.guifications.org/plugins/Plugin%20Pack/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa ppc x86" -IUSE="talkfilters debug gtk ncurses" - -DEPEND="net-im/pidgin - talkfilters? ( app-text/talkfilters )" -RDEPEND="${DEPEND}" - -pkg_setup() { - if use gtk && ! built_with_use net-im/pidgin gtk; then - eerror "You need to compile net-im/pidgin with USE=gtk to be" - eerror "able to compile these plugins with gtk" - die "Missing gtk USE flag on net-im/pidgin" - fi - - if use ncurses && ! built_with_use net-im/pidgin ncurses; then - eerror "You need to compile net-im/pidgin with USE=ncurses to be" - eerror "able to compile these plugins with ncurses" - die "Missing ncurses USE flag on net-im/pidgin" - fi -} - -src_compile() { - local plugins="" - - # WARNING - # This code to select plugins wont work with 2.2.0 - # because it ignores --with-plugins completely - # and just always builds everything - - # XMMS Remote is disabled due to XMMS being masked - DISABLED_PLUGINS="xmmsremote" - - use talkfilters || DISABLED_PLUGINS="${DISABLED_PLUGINS} talkfilters" - - for i in *; do - [ -d ${i} ] || continue - # We manually disable these plugins - if [ -z "${DISABLED_PLUGINS##*${i}*}" ]; then - continue - fi - - # Only directories with .build files are meant to be built - if [ ! -e ${i}/.build ]; then - continue - fi - - # Those should be generic# - if [ -e ${i}/.purple-plugin ]; then - plugins="${plugins},${i}" - # These require gtk (ie pidgin) - elif [ -e ${i}/.pidgin-plugin ]; then - use gtk && plugins="${plugins},${i}" - # These require ncurses (aka finch) - elif [ -e ${i}/.finch-plugin ]; then - use ncurses && plugins="${plugins},${i}" - fi - done - - econf --with-plugins="${plugins:1}" $(use_enable debug) || die "econf failed" - emake -j1 || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README TODO VERSION -} diff --git a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.3.0.ebuild b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.3.0.ebuild deleted file mode 100644 index da5bc7052b32..000000000000 --- a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.3.0.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2008 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.3.0.ebuild,v 1.1 2008/04/01 02:48:18 tester Exp $ - -inherit eutils - -DESCRIPTION="A package with many different plugins for pidgin and libpurple" -HOMEPAGE="http://plugins.guifications.org" -SRC_URI="http://downloads.guifications.org/plugins/Plugin%20Pack/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~x86" -IUSE="talkfilters debug gtk ncurses" - -DEPEND="net-im/pidgin - talkfilters? ( app-text/talkfilters )" -RDEPEND="${DEPEND}" - -pkg_setup() { - if use gtk && ! built_with_use net-im/pidgin gtk; then - eerror "You need to compile net-im/pidgin with USE=gtk to be" - eerror "able to compile these plugins with gtk" - die "Missing gtk USE flag on net-im/pidgin" - fi - - if use ncurses && ! built_with_use net-im/pidgin ncurses; then - eerror "You need to compile net-im/pidgin with USE=ncurses to be" - eerror "able to compile these plugins with ncurses" - die "Missing ncurses USE flag on net-im/pidgin" - fi -} - -src_compile() { - local plugins="" - - # WARNING - # This code to select plugins wont work with 2.2.0 - # because it ignores --with-plugins completely - # and just always builds everything - - # XMMS Remote is disabled due to XMMS being masked - DISABLED_PLUGINS="xmmsremote switchspell" - - use talkfilters || DISABLED_PLUGINS="${DISABLED_PLUGINS} talkfilters" - - for i in *; do - [ -d ${i} ] || continue - # We manually disable these plugins - if [ -z "${DISABLED_PLUGINS##*${i}*}" ]; then - continue - fi - - # Only directories with .build files are meant to be built - if [ ! -e ${i}/.build ]; then - continue - fi - - # Those should be generic# - if [ -e ${i}/.purple-plugin ]; then - plugins="${plugins},${i}" - # These require gtk (ie pidgin) - elif [ -e ${i}/.pidgin-plugin ]; then - use gtk && plugins="${plugins},${i}" - # These require ncurses (aka finch) - elif [ -e ${i}/.finch-plugin ]; then - use ncurses && plugins="${plugins},${i}" - fi - done - - econf --with-plugins="${plugins:1}" $(use_enable debug) || die "econf failed" - emake -j1 || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README TODO VERSION -} diff --git a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.5.1.ebuild b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.5.1.ebuild deleted file mode 100644 index 6a23259897fc..000000000000 --- a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.5.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2009 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.5.1.ebuild,v 1.3 2009/01/05 05:46:53 tester Exp $ - -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="talkfilters debug gtk ncurses spell" - -RDEPEND="net-im/pidgin - talkfilters? ( app-text/talkfilters ) - spell? ( app-text/gtkspell )" -DEPEND="${RDEPEND} - dev-lang/python" - -pkg_setup() { - if use gtk && ! built_with_use net-im/pidgin gtk; then - eerror "You need to compile net-im/pidgin with USE=gtk to be" - eerror "able to compile these plugins with gtk" - die "Missing gtk USE flag on net-im/pidgin" - fi - - if use ncurses && ! built_with_use net-im/pidgin ncurses; then - eerror "You need to compile net-im/pidgin with USE=ncurses to be" - eerror "able to compile these plugins with ncurses" - die "Missing ncurses USE flag on net-im/pidgin" - fi -} - -src_compile() { - local plugins="" - - # XMMS Remote is disabled due to XMMS being masked - DISABLED_PLUGINS="xmmsremote" - - use talkfilters || DISABLED_PLUGINS="${DISABLED_PLUGINS} talkfilters" - use spell || DISABLED_PLGUINS="${DISABLED_PLUGINS} switchspell" - - plugins="$(python plugin_pack.py -p dist_dirs)" - use gtk && plugins="${plugins} $(python plugin_pack.py -P dist_dirs)" - use ncurses && plugins="${plugins} $(python plugin_pack.py -f dist_dirs)" - - # Disable incomplete plugins too - DISABLED_PLUGINS="${DISABLED_PLUGINS} $(python plugin_pack.py -i dist_dirs)" - - for i in $DISABLED_PLUGINS; do - plugins="${plugins//$i/}" - plugins="${plugins// / }" - plugins="${plugins/# /}" - plugins="${plugins/% /}" - echo disabled $i - echo $plugins - done - - plugins="${plugins// /,}" - - econf --with-plugins="${plugins}" $(use_enable debug) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README VERSION -} |