diff options
Diffstat (limited to 'net-im/tmsnc/tmsnc-0.3.2.ebuild')
-rw-r--r-- | net-im/tmsnc/tmsnc-0.3.2.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/net-im/tmsnc/tmsnc-0.3.2.ebuild b/net-im/tmsnc/tmsnc-0.3.2.ebuild deleted file mode 100644 index fd1e63851ac4..000000000000 --- a/net-im/tmsnc/tmsnc-0.3.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/tmsnc/tmsnc-0.3.2.ebuild,v 1.8 2008/07/18 07:26:59 aballier Exp $ - -DESCRIPTION="TMSNC is a textbased MSN client written in C." -HOMEPAGE="http://tmsnc.sourceforge.net/" -SRC_URI="mirror://sourceforge/tmsnc/${P}.tar.gz" - -LICENSE="IRPDL" -SLOT="0" -KEYWORDS="amd64 hppa ppc x86 ~x86-fbsd" -IUSE="ssl talkfilters" - -DEPEND="virtual/libc - >=sys-libs/ncurses-5.4 - ssl? ( >=dev-libs/openssl-0.9.7d ) - talkfilters? ( >=app-text/talkfilters-2.3.4 )" - -src_compile() { - local myconf - use ssl \ - || myconf="${myconf} --without-ssl" - use talkfilters \ - || myconf="${myconf} --without-talkfilters" - econf ${myconf} || die "Configure failed" - emake || die "Make failed" -} -src_install() { - make DESTDIR="${D}" install || die "Make install failed" - dodoc AUTHORS ChangeLog README NEWS -} -pkg_postinst() { - elog "If you want talkfilters support you need to add" - elog "USE=talkfilters to enable support in this package" -} |