diff options
author | 2003-10-26 03:03:33 +0000 | |
---|---|---|
committer | 2003-10-26 03:03:33 +0000 | |
commit | bf4ae7fd95292247da0e9733cb236a60b1019fbc (patch) | |
tree | eb9b6ec80b2578ceb53f034f55625c9e85f40661 /net-im/aim/aim-1.5.286.ebuild | |
parent | Initial commit, inspired by Seth Chandler <sethbc@wpi.edu> on bug #12043 and ... (diff) | |
download | historical-bf4ae7fd95292247da0e9733cb236a60b1019fbc.tar.gz historical-bf4ae7fd95292247da0e9733cb236a60b1019fbc.tar.bz2 historical-bf4ae7fd95292247da0e9733cb236a60b1019fbc.zip |
Initial commit, inspired by Seth Chandler <sethbc@wpi.edu> on bug #12043 and Jeff Shirley <shirjs0@wfu.edu> on bug #29494.
Diffstat (limited to 'net-im/aim/aim-1.5.286.ebuild')
-rw-r--r-- | net-im/aim/aim-1.5.286.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net-im/aim/aim-1.5.286.ebuild b/net-im/aim/aim-1.5.286.ebuild new file mode 100644 index 000000000000..6ceded6d7fd3 --- /dev/null +++ b/net-im/aim/aim-1.5.286.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/aim/aim-1.5.286.ebuild,v 1.1 2003/10/26 03:03:30 spyderous Exp $ + +IUSE="" +DESCRIPTION="AOL's Instant Messenger client" +SRC_URI="${P}.tgz" +HOMEPAGE="http://www.aim.com/get_aim/linux/latest_linux.adp" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +RESTRICT="nostrip fetch" +DEPEND="=x11-libs/gtk+-1.2* + >=dev-libs/glib-1.2 + x11-base/xfree" +S="${WORKDIR}" + +pkg_nofetch() { + einfo "Please go to" + einfo "http://www.aim.com/get_aim/linux/latest_linux.adp" + einfo "and place ${A} in ${DISTDIR}." +} + +src_install() { + + # Initial install + dodir /opt/${PN} + cd ${S}/usr + cp -dR * ${D}/opt/${PN}/ + + # Set up paths for env + echo "LDPATH=/opt/${PN}/lib" > ${T}/99aim + echo "PATH=/opt/${PN}" >> ${T}/99aim + insinto /etc/env.d + doins ${T}/99aim + + # Needed shell script + echo "#!/bin/bash" > ${T}/aim + echo "/opt/aim/bin/aim --install_dir /opt/aim/lib/aim" >> ${T}/aim + exeinto /opt/aim + doexe ${T}/aim + + prepall +} |