diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-04-23 10:48:50 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-04-23 10:48:50 +0000 |
commit | dd33ec529ae2d605bb30deeb27c946f50d167cf4 (patch) | |
tree | 3d0442ee6e35b49e07d0549bd77565eee19b6a9e /net-irc | |
parent | Version bump. (diff) | |
download | gentoo-2-dd33ec529ae2d605bb30deeb27c946f50d167cf4.tar.gz gentoo-2-dd33ec529ae2d605bb30deeb27c946f50d167cf4.tar.bz2 gentoo-2-dd33ec529ae2d605bb30deeb27c946f50d167cf4.zip |
Punt older.
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/weechat/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/weechat/weechat-0.3.5.ebuild | 102 |
2 files changed, 4 insertions, 103 deletions
diff --git a/net-irc/weechat/ChangeLog b/net-irc/weechat/ChangeLog index cddca165d0a2..3015aaf5fd4c 100644 --- a/net-irc/weechat/ChangeLog +++ b/net-irc/weechat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/weechat # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.110 2012/04/16 21:11:28 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.111 2012/04/23 10:48:50 scarabeus Exp $ + + 23 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> -weechat-0.3.5.ebuild: + Punt older. 16 Apr 2012; Brent Baude <ranger@gentoo.org> weechat-0.3.7.ebuild: Marking weechat-0.3.7 ppc for bug 393649 diff --git a/net-irc/weechat/weechat-0.3.5.ebuild b/net-irc/weechat/weechat-0.3.5.ebuild deleted file mode 100644 index 7061b67c6b88..000000000000 --- a/net-irc/weechat/weechat-0.3.5.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.3.5.ebuild,v 1.7 2011/12/31 18:12:20 binki Exp $ - -EAPI=3 - -# Can only add ruby19 support when ruby:1.9 is keyworded. -#USE_RUBY="ruby18 ruby19" -USE_RUBY="ruby18" -RUBY_OPTIONAL="yes" - -PYTHON_DEPEND="python? 2" - -EGIT_REPO_URI="git://git.sv.gnu.org/weechat.git" -[[ ${PV} == "9999" ]] && GIT_ECLASS="git-2" -inherit python multilib ruby-ng cmake-utils ${GIT_ECLASS} - -DESCRIPTION="Portable and multi-interface IRC client." -HOMEPAGE="http://weechat.org/" -[[ ${PV} == "9999" ]] || SRC_URI="http://${PN}.org/files/src/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -if [[ ${PV} == "9999" ]]; then - KEYWORDS="" -else - KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux" -fi - -NETWORKS="+irc" -PLUGINS="+alias +charset +fifo +logger +relay +rmodifier +scripts +spell +xfer" -INTERFACES="+ncurses" # gtk" -SCRIPT_LANGS="lua +perl +python ruby tcl" -IUSE="${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS} +crypt doc nls +ssl" - -RDEPEND=" - charset? ( virtual/libiconv ) - lua? ( dev-lang/lua[deprecated] ) - ncurses? ( sys-libs/ncurses ) - perl? ( dev-lang/perl ) - ruby? ( $(ruby_implementations_depend) ) - ssl? ( net-libs/gnutls ) - spell? ( app-text/aspell ) - tcl? ( >=dev-lang/tcl-8.4.15 ) -" -# gtk? ( x11-libs/gtk+:2 ) -DEPEND="${RDEPEND} - nls? ( >=sys-devel/gettext-0.15 ) -" - -DOCS="AUTHORS ChangeLog NEWS README" - -#REQUIRED_USE=" || ( ncurses )" # || ( ncurses gtk ) - -pkg_setup() { - python_set_active_version 2 - - ruby-ng_pkg_setup -} - -src_prepare() { - # fix libdir placement - sed -i \ - -e "s:lib/:$(get_libdir)/:g" \ - -e "s:lib\":$(get_libdir)\":g" \ - CMakeLists.txt || die "sed failed" -} - -# alias, rmodifier, xfer -src_configure() { - mycmakeargs=( - "-DENABLE_LARGEFILE=ON" - "-DENABLE_DEMO=OFF" - "-DENABLE_GTK=OFF" - $(cmake-utils_use_enable ncurses) - $(cmake-utils_use_enable nls) - $(cmake-utils_use_enable crypt GCRYPT) - $(cmake-utils_use_enable spell ASPELL) - $(cmake-utils_use_enable charset) - $(cmake-utils_use_enable fifo) - $(cmake-utils_use_enable irc) - $(cmake-utils_use_enable logger) - $(cmake-utils_use_enable relay) - $(cmake-utils_use_enable scripts) - $(cmake-utils_use_enable perl) - $(cmake-utils_use_enable python) - $(cmake-utils_use_enable ruby) - $(cmake-utils_use_enable lua) - $(cmake-utils_use_enable tcl) - $(cmake-utils_use_enable doc) - ) - - cmake-utils_src_configure -} - -pkg_postinst() { - if use scripts && use python; then - elog "You may use the following script from upstream to manage your scripts." - elog "It helps with downloading and updating other scripts:" - elog " http://www.weechat.org/scripts/source/stable/weeget.py/" - fi -} |