diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-02-05 09:47:38 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-02-05 09:47:38 +0000 |
commit | 42b25973488fee3d3797eb4fe767f1824e029e7e (patch) | |
tree | 94847f2e00b47bdeb0ee69f312846a50453aa320 /net-im/ekg2 | |
parent | Version bump. (diff) | |
download | gentoo-2-42b25973488fee3d3797eb4fe767f1824e029e7e.tar.gz gentoo-2-42b25973488fee3d3797eb4fe767f1824e029e7e.tar.bz2 gentoo-2-42b25973488fee3d3797eb4fe767f1824e029e7e.zip |
Remove the live ebuild, it has been moved to the 'mgorny' overlay.
(Portage version: 2.2.0_alpha19_p84/cvs/Linux x86_64)
Diffstat (limited to 'net-im/ekg2')
-rw-r--r-- | net-im/ekg2/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/ekg2/ekg2-9999.ebuild | 110 |
2 files changed, 4 insertions, 111 deletions
diff --git a/net-im/ekg2/ChangeLog b/net-im/ekg2/ChangeLog index e76fde38dece..db1a090c5d97 100644 --- a/net-im/ekg2/ChangeLog +++ b/net-im/ekg2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/ekg2 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/ekg2/ChangeLog,v 1.41 2011/01/22 14:14:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/ekg2/ChangeLog,v 1.42 2011/02/05 09:47:37 mgorny Exp $ + + 05 Feb 2011; Michał Górny <mgorny@gentoo.org> -ekg2-9999.ebuild: + Remove the live ebuild, it has been moved to the 'mgorny' overlay. *ekg2-0.3.0_rc7 (22 Jan 2011) diff --git a/net-im/ekg2/ekg2-9999.ebuild b/net-im/ekg2/ekg2-9999.ebuild deleted file mode 100644 index dc41a2e3db2a..000000000000 --- a/net-im/ekg2/ekg2-9999.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/ekg2/ekg2-9999.ebuild,v 1.2 2010/12/17 20:08:36 mgorny Exp $ - -EAPI=2 -EGIT_REPO_URI="git://github.com/leafnode/ekg2.git" - -inherit autotools autotools-utils git - -DESCRIPTION="Text-based, multi-protocol instant messenger" -HOMEPAGE="http://www.ekg2.org" -SRC_URI="" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="expat gadu gif gnutls gpg gpm gsm gtk idn inotify jpeg ncurses nls - oracle perl python readline spell sqlite sqlite3 ssl threads unicode - xosd zlib" - -RDEPEND=" - gpg? ( app-crypt/gpgme ) - gsm? ( media-sound/gsm ) - gtk? ( x11-libs/gtk+:2 ) - idn? ( net-dns/libidn ) - nls? ( virtual/libintl ) - oracle? ( dev-db/oracle-instantclient-basic ) - perl? ( dev-lang/perl ) - python? ( dev-lang/python ) - readline? ( sys-libs/readline ) - ssl? ( dev-libs/openssl ) - xosd? ( x11-libs/xosd ) - zlib? ( sys-libs/zlib ) - - gadu? ( net-libs/libgadu - gif? ( media-libs/giflib ) - jpeg? ( media-libs/jpeg ) ) - expat? ( dev-libs/expat - gnutls? ( net-libs/gnutls ) ) - ncurses? ( sys-libs/ncurses[unicode?] - gpm? ( sys-libs/gpm ) - spell? ( app-text/aspell ) ) - sqlite3? ( dev-db/sqlite:3 ) - !sqlite3? ( sqlite? ( dev-db/sqlite:0 ) )" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -DOCS=( - AUTHORS README.md docs/README docs/TODO - docs/events.txt docs/mouse.txt docs/sim.txt docs/voip.txt - docs/themes.txt docs/themes-en.txt - docs/ui-ncurses.txt docs/ui-ncurses-en.txt -) -AUTOTOOLS_IN_SOURCE_BUILD=1 - -pkg_setup() { - if ! use gtk && ! use ncurses && ! use readline; then - ewarn 'ekg2 is being compiled without any frontend, you should consider' - ewarn 'enabling at least one of following USEflags:' - ewarn ' gtk, ncurses, readline.' - fi - - if use gnutls && ! use ssl; then - ewarn 'You have enabled USE=gnutls without USE=ssl. The SSL support' - ewarn 'in ekg2 will be limited to the plugins supporting GnuTLS.' - fi -} - -src_prepare() { - autotools-utils_src_prepare - eautoreconf - eautopoint - # Ugly and gives too many files but should work. - find -name '*.c' | sort > po/POTFILES.in -} - -src_configure() { - myeconfargs=( - $(use_with expat) - $(use_with gadu libgadu) - $(use_with gif) - $(use_with gnutls libgnutls) - $(use_with gpg) - $(use_with gpm gpm-mouse) - $(use_with gsm libgsm) - $(use_with gtk) - $(use_with idn libidn) - $(use_with inotify) - $(use_with jpeg libjpeg) - $(use_with ncurses) - $(use_with oracle logsoracle) - $(use_with perl) - $(use_with python) - $(use_with readline) - $(use_with spell aspell) - $(use_with sqlite) - $(use_with sqlite3) - $(use_with ssl openssl) - $(use_with threads pthread) - $(use_with xosd libxosd) - $(use_with zlib) - $(use_enable nls) - $(use_enable unicode) - --without-ioctld - --disable-remote - --enable-skip-relative-plugins-dir - ) - autotools-utils_src_configure -} |