diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-02-07 20:50:36 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-02-07 20:50:36 +0000 |
commit | 6fbb16c5bb4b9c07e387940298c103eca85ac765 (patch) | |
tree | da8f284162861c4f6ed4ce8ff63447242806ff16 /net-im/centericq | |
parent | plugin correction (diff) | |
download | historical-6fbb16c5bb4b9c07e387940298c103eca85ac765.tar.gz historical-6fbb16c5bb4b9c07e387940298c103eca85ac765.tar.bz2 historical-6fbb16c5bb4b9c07e387940298c103eca85ac765.zip |
new version... set as release due to the fact that none of the ebuilds currently work.
Diffstat (limited to 'net-im/centericq')
-rw-r--r-- | net-im/centericq/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/centericq/centericq-4.9.2.ebuild | 37 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-im/centericq/ChangeLog b/net-im/centericq/ChangeLog index 65000c30f13e..9484cbc40caf 100644 --- a/net-im/centericq/ChangeLog +++ b/net-im/centericq/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/centericq # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-im/centericq/ChangeLog,v 1.16 2003/02/04 15:55:26 nall Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/centericq/ChangeLog,v 1.17 2003/02/07 20:50:36 rphillips Exp $ + +*centericq-4.9.2 (07 Feb 2003) Ryan Phillips <rphillips@gentoo.org> : + New version *centericq-4.9.0 (26 Dec 2002) Ryan Phillips <rphillips@gentoo.org> : diff --git a/net-im/centericq/centericq-4.9.2.ebuild b/net-im/centericq/centericq-4.9.2.ebuild new file mode 100644 index 000000000000..9b20efd42265 --- /dev/null +++ b/net-im/centericq/centericq-4.9.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/centericq/centericq-4.9.2.ebuild,v 1.1 2003/02/07 20:50:36 rphillips Exp $ + +inherit eutils + +IUSE="nls" + +S=${WORKDIR}/${P} +DESCRIPTION="A ncurses ICQ/Yahoo!/MSN/IRC/Jabber Client" +SRC_URI="http://konst.org.ua/download/${P}.tar.gz" +HOMEPAGE="http://konst.org.ua/eng/software/centericq/info.html" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2 + =dev-libs/libsigc++-1.0* + =dev-libs/glib-1.2*" + +RDEPEND="nls? ( sys-devel/gettext )" + +src_compile() { + local myopts="" + + use nls || myopts="--disable-nls" + + econf ${myopts} || die "Configure failed" + emake || die "Compilation failed" +} + +src_install () { + einstall || die "Installation failed" + + dodoc ABOUT-NLS AUTHORS ChangeLog COPYING FAQ README THANKS TODO +} |