summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago M. Mola <coldwind@gentoo.org>2008-03-25 17:54:10 +0000
committerSantiago M. Mola <coldwind@gentoo.org>2008-03-25 17:54:10 +0000
commit7249e977c0dbbce8652d23806ac0b15342b5081b (patch)
tree3743e3de1afc9bbe3c6d034767e197c829af85b4 /net-im/ekg
parentAdded myself as maintainer (diff)
downloadgentoo-2-7249e977c0dbbce8652d23806ac0b15342b5081b.tar.gz
gentoo-2-7249e977c0dbbce8652d23806ac0b15342b5081b.tar.bz2
gentoo-2-7249e977c0dbbce8652d23806ac0b15342b5081b.zip
Remove old and fix quoting.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-im/ekg')
-rw-r--r--net-im/ekg/ChangeLog10
-rw-r--r--net-im/ekg/ekg-1.6.ebuild60
-rw-r--r--net-im/ekg/ekg-1.6_rc3.ebuild59
-rw-r--r--net-im/ekg/ekg-1.7.ebuild10
-rw-r--r--net-im/ekg/ekg-1.7_rc2.ebuild65
-rw-r--r--net-im/ekg/ekg-1.7_rc3.ebuild65
-rw-r--r--net-im/ekg/files/ekg-1.6-dragonfly.patch42
-rw-r--r--net-im/ekg/files/ekg-1.6_rc1-fpic.patch12
8 files changed, 13 insertions, 310 deletions
diff --git a/net-im/ekg/ChangeLog b/net-im/ekg/ChangeLog
index fdd2f488c4a2..5e20d8a4a855 100644
--- a/net-im/ekg/ChangeLog
+++ b/net-im/ekg/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-im/ekg
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v 1.39 2007/10/11 19:26:05 pylon Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v 1.40 2008/03/25 17:54:09 coldwind Exp $
+
+ 25 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
+ -files/ekg-1.6-dragonfly.patch, -files/ekg-1.6_rc1-fpic.patch,
+ -ekg-1.6_rc3.ebuild, -ekg-1.6.ebuild, -ekg-1.7_rc2.ebuild,
+ -ekg-1.7_rc3.ebuild, ekg-1.7.ebuild:
+ Remove old and fix quoting.
11 Oct 2007; Lars Weiler <pylon@gentoo.org> ekg-1.7.ebuild:
stable ppc, bug #189735
diff --git a/net-im/ekg/ekg-1.6.ebuild b/net-im/ekg/ekg-1.6.ebuild
deleted file mode 100644
index 7345d7be7aac..000000000000
--- a/net-im/ekg/ekg-1.6.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.6.ebuild,v 1.4 2006/10/23 19:14:53 spock Exp $
-
-inherit eutils
-
-IUSE="ssl ncurses readline zlib python spell threads"
-
-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 )"
-
-DEPEND=">=sys-devel/automake-1.7
- >=sys-devel/autoconf-2.50
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-1.6_rc3-libgadu.patch
- epatch ${FILESDIR}/${PN}-1.6-dragonfly.patch
- autoreconf
-}
-
-src_compile() {
- 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"
- use zlib || myconf="$myconf --disable-zlib"
- use ssl || myconf="$myconf --disable-openssl"
- use python && myconf="$myconf --with-python"
- use spell && myconf="$myconf --enable-aspell"
- use threads && myconf="$myconf --with-pthread"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc docs/* docs/api/*
-}
diff --git a/net-im/ekg/ekg-1.6_rc3.ebuild b/net-im/ekg/ekg-1.6_rc3.ebuild
deleted file mode 100644
index 29923a96aa4f..000000000000
--- a/net-im/ekg/ekg-1.6_rc3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.6_rc3.ebuild,v 1.8 2006/10/23 19:14:53 spock Exp $
-
-inherit eutils
-
-IUSE="ssl ncurses readline zlib python spell threads"
-
-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 )"
-
-DEPEND=">=sys-devel/automake-1.7
- >=sys-devel/autoconf-2.50
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-libgadu.patch
- autoreconf
-}
-
-src_compile() {
- 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"
- use zlib || myconf="$myconf --disable-zlib"
- use ssl || myconf="$myconf --disable-openssl"
- use python && myconf="$myconf --with-python"
- use spell && myconf="$myconf --enable-aspell"
- use threads && myconf="$myconf --with-pthread"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- einstall || die
- dodoc docs/* docs/api/*
-}
diff --git a/net-im/ekg/ekg-1.7.ebuild b/net-im/ekg/ekg-1.7.ebuild
index b847a49564bc..941d9818395b 100644
--- a/net-im/ekg/ekg-1.7.ebuild
+++ b/net-im/ekg/ekg-1.7.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.7.ebuild,v 1.6 2007/10/11 19:26:05 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.7.ebuild,v 1.7 2008/03/25 17:54:09 coldwind Exp $
inherit eutils autotools
@@ -32,9 +32,9 @@ DEPEND=">=sys-devel/automake-1.7
src_unpack() {
unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-1.6_rc3-libgadu.patch
- epatch ${FILESDIR}/${PN}-1.7_rc2-giflib.patch
+ cd "${S}"
+ epatch "${FILESDIR}"/${PN}-1.6_rc3-libgadu.patch
+ epatch "${FILESDIR}"/${PN}-1.7_rc2-giflib.patch
eautoreconf
}
diff --git a/net-im/ekg/ekg-1.7_rc2.ebuild b/net-im/ekg/ekg-1.7_rc2.ebuild
deleted file mode 100644
index d85d4402cb6c..000000000000
--- a/net-im/ekg/ekg-1.7_rc2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.7_rc2.ebuild,v 1.2 2006/10/23 19:14:53 spock Exp $
-
-inherit eutils autotools
-
-IUSE="ssl ncurses readline zlib python spell threads gif jpeg"
-
-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? ( media-libs/jpeg )"
-
-DEPEND=">=sys-devel/automake-1.7
- >=sys-devel/autoconf-2.50
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-1.6_rc3-libgadu.patch
- epatch ${FILESDIR}/${PN}-1.7_rc2-giflib.patch
- eautoreconf
-}
-
-src_compile() {
- 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_enable zlib` \
- `use_enable spell aspell` \
- `use_enable ssl openssl` \
- || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc docs/* docs/api/*
-}
diff --git a/net-im/ekg/ekg-1.7_rc3.ebuild b/net-im/ekg/ekg-1.7_rc3.ebuild
deleted file mode 100644
index 0957df8affd0..000000000000
--- a/net-im/ekg/ekg-1.7_rc3.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.7_rc3.ebuild,v 1.1 2007/03/17 12:00:25 spock Exp $
-
-inherit eutils autotools
-
-IUSE="ssl ncurses readline zlib python spell threads gif jpeg"
-
-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? ( media-libs/jpeg )"
-
-DEPEND=">=sys-devel/automake-1.7
- >=sys-devel/autoconf-2.50
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-1.6_rc3-libgadu.patch
- epatch ${FILESDIR}/${PN}-1.7_rc2-giflib.patch
- eautoreconf
-}
-
-src_compile() {
- 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_enable zlib` \
- `use_enable spell aspell` \
- `use_enable ssl openssl` \
- || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc docs/* docs/api/*
-}
diff --git a/net-im/ekg/files/ekg-1.6-dragonfly.patch b/net-im/ekg/files/ekg-1.6-dragonfly.patch
deleted file mode 100644
index 125ab74ede58..000000000000
--- a/net-im/ekg/files/ekg-1.6-dragonfly.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -ur ./ekg-1.6.orig/contrib/ioctld-client.c ekg-1.6/contrib/ioctld-client.c
---- ./ekg-1.6.orig/contrib/ioctld-client.c 2005-02-27 20:35:58 +0000
-+++ ekg-1.6/contrib/ioctld-client.c 2006-02-18 09:02:56 +0000
-@@ -26,7 +26,7 @@
- #include <arpa/inet.h>
- #include <sys/socket.h>
- #include <netdb.h>
--#ifdef __FreeBSD__
-+#if defined (__FreeBSD__) || defined (__DragonFly__)
- # include <sys/kbio.h>
- #endif
- #ifdef sun /* Solaris */
-@@ -147,7 +147,7 @@
- if (tone[s])
- fprintf(stderr, " %d/%d", tone[s], delay[s]);
-
--#ifdef __FreeBSD__
-+#if defined (__FreeBSD__) || defined (__DragonFly__)
- ioctl(fd, KIOCSOUND, 0);
- #endif
-
-diff -ur ./ekg-1.6.orig/src/ioctld.c ekg-1.6/src/ioctld.c
---- ./ekg-1.6.orig/src/ioctld.c 2005-02-27 20:36:02 +0000
-+++ ekg-1.6/src/ioctld.c 2006-02-18 09:03:46 +0000
-@@ -26,7 +26,7 @@
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <sys/socket.h>
--#ifdef __FreeBSD__
-+#if defined (__FreeBSD__) || defined (__DragonFly__)
- # include <sys/kbio.h>
- #endif
- #ifdef sun /* Solaris */
-@@ -124,7 +124,7 @@
-
- for (s = 0; tone[s] >= 0 && s < IOCTLD_MAX_ITEMS; s++) {
-
--#ifdef __FreeBSD__
-+#if defined (__FreeBSD__) || defined (__DragonFly__)
- ioctl(fd, KIOCSOUND, 0);
- #endif
-
diff --git a/net-im/ekg/files/ekg-1.6_rc1-fpic.patch b/net-im/ekg/files/ekg-1.6_rc1-fpic.patch
deleted file mode 100644
index ca2da2967c54..000000000000
--- a/net-im/ekg/files/ekg-1.6_rc1-fpic.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur ekg-1.6rc1-old/configure ekg-1.6rc1/configure
---- ekg-1.6rc1-old/configure 2005-03-20 13:46:53.000000000 +0100
-+++ ekg-1.6rc1/configure 2005-04-14 13:15:30.294949464 +0200
-@@ -4224,7 +4224,7 @@
- echo $ECHO_N "checking if -pthread is sufficient with -shared... $ECHO_C" >&6
- save_CFLAGS="$CFLAGS"
- save_LIBS="$LIBS"
-- CFLAGS="-shared -Wl,-z,defs $CFLAGS"
-+ CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS"
- ok="no"
- cat >conftest.$ac_ext <<_ACEOF
- #line $LINENO "configure"