diff options
Diffstat (limited to 'net-im/aim-transport/aim-transport-20040131-r1.ebuild')
-rw-r--r-- | net-im/aim-transport/aim-transport-20040131-r1.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/net-im/aim-transport/aim-transport-20040131-r1.ebuild b/net-im/aim-transport/aim-transport-20040131-r1.ebuild new file mode 100644 index 000000000000..d87cddb201bf --- /dev/null +++ b/net-im/aim-transport/aim-transport-20040131-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/aim-transport/aim-transport-20040131-r1.ebuild,v 1.1 2004/04/08 02:06:34 humpback Exp $ + +MY_PN="${PN}-stable" +S="${WORKDIR}/${MY_PN}-${PV}" +DESCRIPTION="AOL Instant Messaging transport for jabberd" + +HOMEPAGE="http://aim-transport.jabberstudio.org/" + +SRC_URI="http://aim-transport.jabberstudio.org/${MY_PN}-${PV}.tar.gz" + +LICENSE="GPL-2" + +SLOT="0" + +KEYWORDS="~x86" + +IUSE="" + +DEPEND=">=net-im/jabberd-1.4.3-r3" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/aimtrans.patch +} + +src_compile() { + einfo + einfo "Please ignore any errors/warnings" + einfo + automake + libtoolize --force + aclocal + autoconf + ./configure --with-jabberd=/usr/include/jabberd || die "./configure failed" + emake || die +} + +src_install() { + dodir /etc/jabber /usr/lib/jabberd + insinto /usr/lib/jabberd + doins src/aimtrans.so + insinto /etc/jabber + doins ${FILESDIR}/aimtrans.xml + exeinto /etc/init.d + newexe ${FILESDIR}/aim-transport.init aim-transport + dodoc README ${FILESDIR}/README.Gentoo TODO aim.xml +} + +pkg_postinst() { + einfo + einfo "Please read /usr/share/doc/${P}/README.Gentoo.gz" + einfo "And please notice that now msn-transport comes with a init.d script" + einfo "dont forget to add it to your runlevel." + einfo +} |