diff options
author | Chuck Short <zul@gentoo.org> | 2004-01-18 19:42:18 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-01-18 19:42:18 +0000 |
commit | 0c753aba8e415ef4ed51c1411fe1078fc24b0cfd (patch) | |
tree | 21fe70085e5e5133bbea33f6456e21ec2b84594f /net-im/silc-client/silc-client-1.0.1.ebuild | |
parent | Forced w3mmee version because emacs-w3m needs to have multilingualised w3mmee... (diff) | |
download | gentoo-2-0c753aba8e415ef4ed51c1411fe1078fc24b0cfd.tar.gz gentoo-2-0c753aba8e415ef4ed51c1411fe1078fc24b0cfd.tar.bz2 gentoo-2-0c753aba8e415ef4ed51c1411fe1078fc24b0cfd.zip |
Version bump, closes #38488.
Diffstat (limited to 'net-im/silc-client/silc-client-1.0.1.ebuild')
-rw-r--r-- | net-im/silc-client/silc-client-1.0.1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/net-im/silc-client/silc-client-1.0.1.ebuild b/net-im/silc-client/silc-client-1.0.1.ebuild new file mode 100644 index 000000000000..7301578898c6 --- /dev/null +++ b/net-im/silc-client/silc-client-1.0.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/silc-client/silc-client-1.0.1.ebuild,v 1.1 2004/01/18 19:42:18 zul Exp $ + +DESCRIPTION="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/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc" +IUSE="ipv6 perl socks5" + +DEPEND="=dev-libs/glib-1.2* + perl? ( dev-lang/perl ) + socks5? ( net-misc/dante ) + sys-libs/ncurses" + +src_compile() { + local myconf + use ipv6 && myconf="${myconf} --enable-ipv6" + use socks5 && myconf="${myconf} --with-socks5" + + econf \ + --prefix=/usr \ + --datadir=/usr/share/${PN} \ + --with-datadir=/usr/share/${PN} \ + --with-docdir=/usr/share/doc/${PN} \ + --with-helpdir=/usr/share/${PN}/help \ + --with-logsdir=/var/log/${PN} \ + --with-simdir=/usr/lib/${PN} \ + --with-mandir=/usr/share/man \ + --with-ncurses \ + --without-silcd \ + ${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/lib" + 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" + mv ${D}/usr/libsilc.a ${D}/usr/lib/ + mv ${D}/usr/libsilcclient.a ${D}/usr/lib/ + mv ${D}/usr/libsilcclient.la ${D}/usr/lib/ + mv ${D}/usr/libsilc.la ${D}/usr/lib/ + rmdir ${D}/usr/share/silc/ + rmdir ${D}/usr/include + + dodir /usr/share/man + mv ${D}/man1 ${D}/usr/share/man +} |