diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-03-09 01:34:30 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-03-09 01:34:30 +0000 |
commit | 0c9e2c92bda3ef6236ff0d4e3d8f14d1d37a3904 (patch) | |
tree | 585d63b5b20218eddd1a679e2e5b6044b67784bb /net-im | |
parent | Revert ~ia64 removal commit by adding ~ia64 back, prevents a cascade removal. (diff) | |
download | gentoo-2-0c9e2c92bda3ef6236ff0d4e3d8f14d1d37a3904.tar.gz gentoo-2-0c9e2c92bda3ef6236ff0d4e3d8f14d1d37a3904.tar.bz2 gentoo-2-0c9e2c92bda3ef6236ff0d4e3d8f14d1d37a3904.zip |
Cleanup old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/ekg/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/ekg/ekg-1.8_rc1.ebuild | 71 |
2 files changed, 5 insertions, 73 deletions
diff --git a/net-im/ekg/ChangeLog b/net-im/ekg/ChangeLog index 798a1df61bfc..7714a3e24ea7 100644 --- a/net-im/ekg/ChangeLog +++ b/net-im/ekg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/ekg -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v 1.47 2011/03/21 17:04:44 signals Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v 1.48 2014/03/09 01:34:30 mrueg Exp $ + + 09 Mar 2014; Manuel Rüger <mrueg@gentoo.org> -ekg-1.8_rc1.ebuild: + Cleanup old. *ekg-1.8_rc1-r1 (21 Mar 2011) diff --git a/net-im/ekg/ekg-1.8_rc1.ebuild b/net-im/ekg/ekg-1.8_rc1.ebuild deleted file mode 100644 index a77980d72aaf..000000000000 --- a/net-im/ekg/ekg-1.8_rc1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.8_rc1.ebuild,v 1.5 2011/03/02 19:54:53 signals Exp $ - -EAPI=2 -inherit autotools eutils - -IUSE="gif gtk jpeg ncurses python readline spell ssl threads zlib" - -DESCRIPTION="EKG (Eksperymentalny Klient Gadu-Gadu) - a text client for Polish instant messaging system Gadu-Gadu" -HOMEPAGE="http://ekg.chmurka.net/" -SRC_URI="http://ekg.chmurka.net/${P/_/}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" - -S="${WORKDIR}/${P/_/}" - -RDEPEND="net-libs/libgadu - ssl? ( >=dev-libs/openssl-0.9.6 ) - ncurses? ( sys-libs/ncurses ) - readline? ( sys-libs/readline ) - zlib? ( sys-libs/zlib ) - python? ( dev-lang/python ) - spell? ( >=app-text/aspell-0.50.3 ) - gif? ( media-libs/giflib ) - jpeg? ( virtual/jpeg ) - gtk? ( x11-libs/gtk+:2 )" - -DEPEND=">=sys-devel/automake-1.7 - >=sys-devel/autoconf-2.50 - ${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}/${P}-gtkutil-button-decl.patch" - epatch "${FILESDIR}/${P}-as-needed.patch" - epatch "${FILESDIR}/${P}-gtk.patch" - eautoreconf -} - -src_configure() { - local myconf="--enable-ioctld --disable-static --enable-dynamic" - if use ncurses; then - myconf="$myconf --enable-force-ncurses" - else - myconf="$myconf --disable-ui-ncurses" - fi - use readline && myconf="$myconf --enable-ui-readline" - - econf ${myconf} \ - `use_with python` \ - `use_with threads pthread` \ - `use_with jpeg libjpeg` \ - `use_with gif libgif` \ - `use_with zlib` \ - `use_enable spell aspell` \ - `use_with ssl openssl` \ - `use_enable ssl openssl` \ - `use_enable gtk ui-gtk` \ - || die -} - -src_compile() { - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - dodoc docs/{*.txt,ULOTKA,TODO,README,FAQ} -} |