diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2013-04-05 10:42:16 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2013-04-05 10:42:16 +0000 |
commit | c3faeec598235a9a5d2c6de307fc6d7d7c68b5b4 (patch) | |
tree | 00dd0adee3037700266e040c9e400535237db184 | |
parent | Ensure we define the python for the findpython provided by upstream. Wrt bug#... (diff) | |
download | gentoo-2-c3faeec598235a9a5d2c6de307fc6d7d7c68b5b4.tar.gz gentoo-2-c3faeec598235a9a5d2c6de307fc6d7d7c68b5b4.tar.bz2 gentoo-2-c3faeec598235a9a5d2c6de307fc6d7d7c68b5b4.zip |
Stabilise on amd64 x86 and ppc. Drop older.
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
-rw-r--r-- | net-irc/weechat/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/weechat/weechat-0.3.9.2.ebuild | 114 | ||||
-rw-r--r-- | net-irc/weechat/weechat-0.4.0.ebuild | 4 |
3 files changed, 7 insertions, 117 deletions
diff --git a/net-irc/weechat/ChangeLog b/net-irc/weechat/ChangeLog index 7a5b56248077..760db2beb774 100644 --- a/net-irc/weechat/ChangeLog +++ b/net-irc/weechat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/weechat # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.128 2013/04/05 10:38:47 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/ChangeLog,v 1.129 2013/04/05 10:42:16 scarabeus Exp $ + + 05 Apr 2013; Tomáš Chvátal <scarabeus@gentoo.org> -weechat-0.3.9.2.ebuild, + weechat-0.4.0.ebuild: + Stabilise on amd64 x86 and ppc. Drop older. 05 Apr 2013; Tomáš Chvátal <scarabeus@gentoo.org> weechat-0.4.0.ebuild, weechat-9999.ebuild: diff --git a/net-irc/weechat/weechat-0.3.9.2.ebuild b/net-irc/weechat/weechat-0.3.9.2.ebuild deleted file mode 100644 index 432c6d94f2f3..000000000000 --- a/net-irc/weechat/weechat-0.3.9.2.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.3.9.2.ebuild,v 1.5 2012/11/21 10:16:47 ago Exp $ - -EAPI=4 - -PYTHON_DEPEND="python? 2" # it can use only ONE python, so stick with two for now - -EGIT_REPO_URI="git://git.sv.gnu.org/weechat.git" -[[ ${PV} == "9999" ]] && GIT_ECLASS="git-2" -inherit python multilib 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="guile lua +perl +python ruby tcl" -IUSE="${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS} +crypt doc nls +ssl" - -RDEPEND=" - net-misc/curl[ssl] - sys-libs/ncurses - charset? ( virtual/libiconv ) - guile? ( dev-scheme/guile ) - irc? ( dev-libs/libgcrypt ) - lua? ( dev-lang/lua[deprecated] ) - perl? ( dev-lang/perl ) - ruby? ( >=dev-lang/ruby-1.9 ) - ssl? ( net-libs/gnutls ) - spell? ( app-text/aspell ) - tcl? ( >=dev-lang/tcl-8.4.15 ) -" -# ncurses? ( sys-libs/ncurses ) -# gtk? ( x11-libs/gtk+:2 ) -DEPEND="${RDEPEND} - nls? ( >=sys-devel/gettext-0.15 ) -" - -DOCS="AUTHORS ChangeLog NEWS README" - -#REQUIRED_USE=" || ( ncurses gtk )" - -LANGS=( cs de es fr hu it ja pl pt_BR ru ) -for X in "${LANGS[@]}" ; do - IUSE="${IUSE} linguas_${X}" -done - -pkg_setup() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - local i - - # fix libdir placement - sed -i \ - -e "s:lib/:$(get_libdir)/:g" \ - -e "s:lib\":$(get_libdir)\":g" \ - CMakeLists.txt || die "sed failed" - - # install only required translations - for i in "${LANGS[@]}" ; do - if ! use linguas_${i} ; then - sed -i \ - -e "/${i}.po/d" \ - po/CMakeLists.txt || die - fi - done -} - -# alias, rmodifier, xfer -src_configure() { - # $(cmake-utils_use_enable gtk) - # $(cmake-utils_use_enable ncurses) - local mycmakeargs=( - "-DENABLE_NCURSES=ON" - "-DENABLE_LARGEFILE=ON" - "-DENABLE_DEMO=OFF" - "-DENABLE_GTK=OFF" - $(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 scripts script) - $(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 guile) - $(cmake-utils_use_enable doc) - ) - - cmake-utils_src_configure -} diff --git a/net-irc/weechat/weechat-0.4.0.ebuild b/net-irc/weechat/weechat-0.4.0.ebuild index e956953e5c97..6c926e1409f6 100644 --- a/net-irc/weechat/weechat-0.4.0.ebuild +++ b/net-irc/weechat/weechat-0.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.4.0.ebuild,v 1.4 2013/04/05 10:38:47 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.4.0.ebuild,v 1.5 2013/04/05 10:42:16 scarabeus Exp $ EAPI=5 @@ -19,7 +19,7 @@ SLOT="0" if [[ ${PV} == "9999" ]]; then KEYWORDS="" else - KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-linux ~amd64-linux" + KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux" fi NETWORKS="+irc" |