diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2001-11-04 00:19:43 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2001-11-04 00:19:43 +0000 |
commit | 509e4629349adb983dcbd8fcde831b6e1e82330a (patch) | |
tree | 6ea842e7f9fc37b2a1d42f5820c9069e643987bb /net-im/kinkatta | |
parent | Added sgmltools-lite to depends... More functionality... (diff) | |
download | historical-509e4629349adb983dcbd8fcde831b6e1e82330a.tar.gz historical-509e4629349adb983dcbd8fcde831b6e1e82330a.tar.bz2 historical-509e4629349adb983dcbd8fcde831b6e1e82330a.zip |
Kinkatta 1.0 Enjoy....
Diffstat (limited to 'net-im/kinkatta')
-rw-r--r-- | net-im/kinkatta/kinkatta-1.00.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/net-im/kinkatta/kinkatta-1.00.ebuild b/net-im/kinkatta/kinkatta-1.00.ebuild new file mode 100644 index 000000000000..a6c46efa196a --- /dev/null +++ b/net-im/kinkatta/kinkatta-1.00.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Philippe Namias <pnamias@gentoo.org> +# /home/cvsroot/gentoo-x86/kde-base/kdenetwork/kinkatta-1.00.ebuild v 1 2001/08/29 + +S=${WORKDIR}/${P} +DESCRIPTION="KDE AIM Messenger" +SRC_PATH="kinkatta/${P}.tar.gz" +SRC_URI="http://ftp1.sourceforge.net/$SRC_PATH" + +HOMEPAGE="http://kinkatta.sourceforge.org" + +DEPEND=">=x11-libs/qt-x11-2.2 + >=kde-base/kdebase-${PV} + objprelink? ( dev-util/objprelink )" + +RDEPEND=$DEPEND + +src_unpack() { + + cd ${WORKDIR} + unpack ${P}.tar.gz + cd ${S} + if [ "`use objprelink`" ] ; then + patch -p0 < ${DISTDIR}/kde-admin-acinclude.patch + fi +} + +src_compile() { + local myconf + if [ "`use qtmt`" ] + then + myconf="--enable-mt" + fi + myconf="$myconf --enable-mitshm" + if [ "`use objprelink`" ] ; then + myconf="$myconf --enable-objprelink" + fi + ./configure --host=${CHOST} \ + --with-xinerama $myconf || die + make || die +} + +src_install() { + try make install DESTDIR=${D} + dodoc AUTHORS COPYING README +} |