diff options
-rw-r--r-- | net-im/psi/ChangeLog | 9 | ||||
-rw-r--r-- | net-im/psi/Manifest | 2 | ||||
-rw-r--r-- | net-im/psi/files/digest-psi-0.9.3_rc1 | 1 | ||||
-rw-r--r-- | net-im/psi/psi-0.9.3_rc1.ebuild | 52 |
4 files changed, 63 insertions, 1 deletions
diff --git a/net-im/psi/ChangeLog b/net-im/psi/ChangeLog index f25607dc6026..8e9ff9865b96 100644 --- a/net-im/psi/ChangeLog +++ b/net-im/psi/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-im/psi # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/psi/ChangeLog,v 1.42 2004/12/27 11:47:01 humpback Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/psi/ChangeLog,v 1.43 2004/12/27 13:20:30 humpback Exp $ + +*psi-0.9.3_rc1 (27 Dec 2004) + + 27 Dec 2004; Gustavo Felisberto <humpback@gentoo.org>; + +psi-0.9.3_rc1.ebuild: + Added a test version. This is hardmasked due to needed test on qca, and the + fact that is still rc code. *psi-0.9.2-r1 (27 Dec 2004) diff --git a/net-im/psi/Manifest b/net-im/psi/Manifest index cfc21789d6e7..260c3f9b0bd4 100644 --- a/net-im/psi/Manifest +++ b/net-im/psi/Manifest @@ -3,7 +3,9 @@ MD5 9b91ead14acbf0da98d3b33e75c67e79 metadata.xml 306 MD5 e9fb10ce0fe04859a0bc4b565c097555 psi-0.9.1.ebuild 818 MD5 5af9a0050493634ebbe10112188e716b psi-0.9.2-r1.ebuild 1138 MD5 ccc0fcb1a164e58fb56cfd999612ff5d psi-0.9.2.ebuild 827 +MD5 8843c79904d7e0a49f08a02f0740d959 psi-0.9.3_rc1.ebuild 1373 MD5 d27222ab1b988a3cb4364e0a66b7ff2a files/digest-psi-0.9.1 62 MD5 dab2c4d26326cec55a905a1a38351d51 files/digest-psi-0.9.2 63 MD5 dab2c4d26326cec55a905a1a38351d51 files/digest-psi-0.9.2-r1 63 +MD5 1a24e5395a720c18fe8c7eb370d16a0f files/digest-psi-0.9.3_rc1 69 MD5 c43f1bfd60e72f69346f0a67288c62e8 files/psi_gpg_fix 1193 diff --git a/net-im/psi/files/digest-psi-0.9.3_rc1 b/net-im/psi/files/digest-psi-0.9.3_rc1 new file mode 100644 index 000000000000..e0c26b28cfe7 --- /dev/null +++ b/net-im/psi/files/digest-psi-0.9.3_rc1 @@ -0,0 +1 @@ +MD5 a942b749c9fed685d2f64cc7958d783a psi-0.9.3-test1.tar.bz2 1314007 diff --git a/net-im/psi/psi-0.9.3_rc1.ebuild b/net-im/psi/psi-0.9.3_rc1.ebuild new file mode 100644 index 000000000000..f4f2293bbe0e --- /dev/null +++ b/net-im/psi/psi-0.9.3_rc1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/psi/psi-0.9.3_rc1.ebuild,v 1.1 2004/12/27 13:20:30 humpback Exp $ + +VER="0.9.3" +REV="-test1" +MY_PV="${VER}${REV}" +MY_P="${PN}-${MY_PV}" + +IUSE="kde ssl crypt" +#RESTRICT="nomirror" +QV="2.0" +SRC_URI="http://people.ex.ac.uk/kismith/psi/${MY_P}.tar.bz2" +DESCRIPTION="QT 3.x Jabber Client, with Licq-like interface" +HOMEPAGE="http://psi.affinix.com" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~hppa ~amd64 ~sparc" + +#After final relase we do not need this +S="${WORKDIR}/${MY_P}" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6c + >=app-crypt/qca-1.0 + >=app-crypt/qca-tls-1.0 ) + crypt? ( >=app-crypt/gnupg-1.2.2 ) + >=x11-libs/qt-3" + +src_compile() { + use kde || myconf="${myconf} --disable-kde" + ./configure --prefix=/usr $myconf || die "Configure failed" + # for CXXFLAGS from make.conf + qmake psi.pro \ + QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \ + QMAKE_RPATH= \ + || die "Qmake failed" + + addwrite "$HOME/.qt" + addwrite "$QTDIR/etc/settings" + emake || die "Make failed" +} + +src_install() { + dodoc README TODO + make INSTALL_ROOT="${D}" install + #this away the docs will also be installed in the standard gentoo dir + for i in roster system emoticons; do + newdoc ${S}/iconsets/${i}/README README.${i} + done; + newdoc certs/README README.certs +} |