summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Verwilst <verwilst@gentoo.org>2002-11-03 16:26:18 +0000
committerBart Verwilst <verwilst@gentoo.org>2002-11-03 16:26:18 +0000
commit490687b478e506a0b4df5934bec7af2c7e4b4c45 (patch)
treee784fe260e59ea8ce5738baad1bc8ec9cc5d69d6 /net-im/psi
parentmoved asapm and ascpu from x11-misc to x11-plugins (diff)
downloadhistorical-490687b478e506a0b4df5934bec7af2c7e4b4c45.tar.gz
historical-490687b478e506a0b4df5934bec7af2c7e4b4c45.tar.bz2
historical-490687b478e506a0b4df5934bec7af2c7e4b4c45.zip
remove old version
Diffstat (limited to 'net-im/psi')
-rw-r--r--net-im/psi/files/digest-psi-0.8.62
-rw-r--r--net-im/psi/psi-0.8.6.ebuild66
2 files changed, 0 insertions, 68 deletions
diff --git a/net-im/psi/files/digest-psi-0.8.6 b/net-im/psi/files/digest-psi-0.8.6
deleted file mode 100644
index 5cdd12c61997..000000000000
--- a/net-im/psi/files/digest-psi-0.8.6
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 8e624f88c7dde5794ce14c22f978f3ad psi-0.8.6.tar.bz2 448520
-MD5 7dd4e476536fb65d001baad6e440d9d4 qssl-1.0.tar.bz2 13032
diff --git a/net-im/psi/psi-0.8.6.ebuild b/net-im/psi/psi-0.8.6.ebuild
deleted file mode 100644
index a688f641f727..000000000000
--- a/net-im/psi/psi-0.8.6.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/psi/psi-0.8.6.ebuild,v 1.7 2002/10/29 07:44:47 vapier Exp $
-
-IUSE="ssl"
-
-S=${WORKDIR}/${P}
-QV="1.0"
-SRC_URI="http://psi.affinix.com/files/${PV}/${P}.tar.bz2
- http://psi.affinix.com/files/common/qssl-${QV}.tar.bz2"
-DESCRIPTION="QT 3.x Jabber Client, with Licq-like interface"
-HOMEPAGE="http://www.affinix.com/~justin/programs/psi/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc"
-
-DEPEND=">=x11-libs/qt-3
- ssl? ( >=dev-libs/openssl-0.9.6c )"
-
-pkg_setup() {
- # xfree should not install these, remove until the fixed
- # xfree is in main use.
- rm -f /usr/X11R6/include/{zconf.h,zlib.h}
-}
-
-src_compile() {
- export QTDIR="${QTDIR}"
- export QMAKESPEC="linux-g++"
- cd ${S}/src
- mv common.cpp common.cpp.orig
- sed -e 's:return "/usr/local/psi":return "/usr/share/psi":' common.cpp.orig | cat > common.cpp
- /usr/qt/3/bin/qmake psi.pro || die
- emake CFLAGS="${CFLAGS} -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT" CXXFLAGS="${CXXFLAGS} -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT" || die
- mv psi ${S}
- if [ "`use ssl`" ]; then
- cd ${WORKDIR}/qssl-${QV}
- qmake qssl.pro
- make
- fi
-}
-
-src_install() {
- # We do not use the ./install method, we do it manually ##
-
- export PSIDIR=/usr/share/psi
-
- dodir /usr/bin
- dodir /usr/share/psi/iconsets
-
- cd ${S}
- cp -rf ./image ${D}/usr/share/psi/
- cp -rf ./iconsets ${D}/usr/share/psi/
- cp -rf ./sound ${D}/usr/share/psi/
- cp -rf ./certs ${D}/usr/share/psi/
- if [ "`use ssl`" ]; then
- cd ${WORKDIR}/qssl-${QV}
- cp libqssl.so ${D}/usr/share/psi
- cd ${S}
- fi
-
- cp psi ${D}/usr/share/psi/
- cp README ${D}/usr/share/psi/
- cp COPYING ${D}/usr/share/psi/
- ln -sf /usr/share/psi/psi ${D}/usr/bin/psi
-}