diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 09:08:10 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 09:08:10 +0000 |
commit | 684e2ae577af2e1d7e92ad331650994b95ef2186 (patch) | |
tree | 54ed528959d0ba9e820a5a1226ac7b861bbf8241 /net-im/silc-client | |
parent | licq-console masked (diff) | |
download | gentoo-2-684e2ae577af2e1d7e92ad331650994b95ef2186.tar.gz gentoo-2-684e2ae577af2e1d7e92ad331650994b95ef2186.tar.bz2 gentoo-2-684e2ae577af2e1d7e92ad331650994b95ef2186.zip |
repoman'd
Diffstat (limited to 'net-im/silc-client')
-rw-r--r-- | net-im/silc-client/files/digest-silc-client-0.9.1 | 1 | ||||
-rw-r--r-- | net-im/silc-client/silc-client-0.9.1.ebuild | 57 | ||||
-rw-r--r-- | net-im/silc-client/silc-client-0.9.4.ebuild | 16 |
3 files changed, 7 insertions, 67 deletions
diff --git a/net-im/silc-client/files/digest-silc-client-0.9.1 b/net-im/silc-client/files/digest-silc-client-0.9.1 deleted file mode 100644 index 67aac5b7360e..000000000000 --- a/net-im/silc-client/files/digest-silc-client-0.9.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 b1b4166adead5cd5534c90f20cd325ec silc-client-0.9.1.tar.bz2 1393411 diff --git a/net-im/silc-client/silc-client-0.9.1.ebuild b/net-im/silc-client/silc-client-0.9.1.ebuild deleted file mode 100644 index 10ab4ee25d16..000000000000 --- a/net-im/silc-client/silc-client-0.9.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Updated by Phil Bordelon <phil@lsu.edu> to sync up to v0.9 -# /space/gentoo/cvsroot/gentoo-x86/net-im/silc-client/silc-client-0.7.6.2.ebuild,v 1.3 2002/04/12 18:54:01 spider Exp - -S=${WORKDIR}/${P} -DESCRIPTION="Secure Internet Live Conferencing" -SRC_URI="http://www.silcnet.org/download/client/sources/${P}.tar.bz2" -HOMEPAGE="http://silcnet.org" -SLOT="0" -DEPEND="virtual/glibc - =dev-libs/glib-1.2* - perl? ( sys-devel/perl ) - sys-libs/ncurses" - -src_compile() { - - myconf="--with-ncurses" - - if [ "`use ipv6`" ]; then - myconf="${myconf} --enable-ipv6" - fi - - if [ "`use socks5`" ]; then - myconf="${myconf} --with-socks5" - fi - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc/silc \ - --with-helpdir=/usr/share/silc/help \ - --with-docdir=/usr/share/doc/${P} \ - --with-simdir=/usr/lib/silc/modules \ - --with-logsdir=/var/log/silc \ - ${myconf} || die "./configure failed" - - make || die "make failed" -} - -src_install () { - myflags="" - if [ "`use perl`" ] - then - R1="s/installsitearch='//" - R2="s/';//" - perl_sitearch="`perl -V:installsitearch | sed -e ${R1} -e ${R2}`" - myflags="${myflags} INSTALLPRIVLIB=${D}/usr" - myflags="${myflags} INSTALLARCHLIB=${D}/${perl_sitearch}" - myflags="${myflags} INSTALLSITELIB=${D}/${perl_sitearch}" - myflags="${myflags} INSTALLSITEARCH=${D}/${perl_sitearch}" - fi - - make DESTDIR=${D} ${myflags} install || die "make install failed" - rmdir ${D}/usr/include -} - diff --git a/net-im/silc-client/silc-client-0.9.4.ebuild b/net-im/silc-client/silc-client-0.9.4.ebuild index 966af1fd5945..b5dd9e6e02df 100644 --- a/net-im/silc-client/silc-client-0.9.4.ebuild +++ b/net-im/silc-client/silc-client-0.9.4.ebuild @@ -1,15 +1,17 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-im/silc-client/silc-client-0.9.4.ebuild,v 1.2 2002/07/17 09:08:10 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="An IRSSI-based text client for Secure Internet Live Conferencing." SRC_URI="http://www.silcnet.org/download/client/sources/${P}.tar.bz2" HOMEPAGE="http://silcnet.org" -LICENSE="GPL-2" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" -DEPEND="virtual/glibc - =dev-libs/glib-1.2* +DEPEND="=dev-libs/glib-1.2* perl? ( sys-devel/perl ) sys-libs/ncurses" RDEPEND="${DEPEND}" @@ -18,13 +20,9 @@ src_compile() { myconf="--with-ncurses" - if [ "`use ipv6`" ]; then - myconf="${myconf} --enable-ipv6" - fi + use ipv6 && myconf="${myconf} --enable-ipv6" - if [ "`use socks5`" ]; then - myconf="${myconf} --with-socks5" - fi + use socks5 && myconf="${myconf} --with-socks5" ./configure \ --host=${CHOST} \ |