diff options
author | Daniel Black <dragonheart@gentoo.org> | 2007-05-19 23:56:23 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2007-05-19 23:56:23 +0000 |
commit | 0907ff5e196f2ac7ffcf74826dac8c1a33ee93e7 (patch) | |
tree | 6d24b78174901e6861d78cff92488e8db8ee97f3 | |
parent | Updated patch to fix broken makefile (thanks to flameeyes for the update) (diff) | |
download | gentoo-2-0907ff5e196f2ac7ffcf74826dac8c1a33ee93e7.tar.gz gentoo-2-0907ff5e196f2ac7ffcf74826dac8c1a33ee93e7.tar.bz2 gentoo-2-0907ff5e196f2ac7ffcf74826dac8c1a33ee93e7.zip |
version bump. thanks to genstef for noticing
(Portage version: 2.1.2.7)
-rw-r--r-- | net-im/twinkle/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/twinkle/files/digest-twinkle-1.0.1 | 3 | ||||
-rw-r--r-- | net-im/twinkle/twinkle-1.0.1.ebuild | 57 |
3 files changed, 66 insertions, 1 deletions
diff --git a/net-im/twinkle/ChangeLog b/net-im/twinkle/ChangeLog index edde53916d4b..d9e2312b3766 100644 --- a/net-im/twinkle/ChangeLog +++ b/net-im/twinkle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/twinkle # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/ChangeLog,v 1.28 2007/02/01 09:36:17 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/ChangeLog,v 1.29 2007/05/19 23:56:23 dragonheart Exp $ + +*twinkle-1.0.1 (19 May 2007) + + 19 May 2007; Daniel Black <dragonheart@gentoo.org> +twinkle-1.0.1.ebuild: + version bump. thanks to genstef for noticing 01 Feb 2007; Daniel Black <dragonheart@gentoo.org> twinkle-1.0-r1.ebuild: ARTS_REQUIRED="never" to fix bug #164550 thanks to Laurent diff --git a/net-im/twinkle/files/digest-twinkle-1.0.1 b/net-im/twinkle/files/digest-twinkle-1.0.1 new file mode 100644 index 000000000000..e70199ce305d --- /dev/null +++ b/net-im/twinkle/files/digest-twinkle-1.0.1 @@ -0,0 +1,3 @@ +MD5 625328b58d8432067be80d47026a4551 twinkle-1.0.1.tar.gz 1256457 +RMD160 094aa44f014427ff919831e4fa02976736390a8d twinkle-1.0.1.tar.gz 1256457 +SHA256 91beee47027d25c746acf92afd4cb3efbe906c005dbb929b496dd31b6b9d3b99 twinkle-1.0.1.tar.gz 1256457 diff --git a/net-im/twinkle/twinkle-1.0.1.ebuild b/net-im/twinkle/twinkle-1.0.1.ebuild new file mode 100644 index 000000000000..d6e7a1ce2150 --- /dev/null +++ b/net-im/twinkle/twinkle-1.0.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/twinkle-1.0.1.ebuild,v 1.1 2007/05/19 23:56:23 dragonheart Exp $ + + +ARTS_REQUIRED="never" +inherit eutils qt3 kde + +DESCRIPTION="a soft phone for your VOIP communcations using SIP" +HOMEPAGE="http://www.twinklephone.com/" +SRC_URI="http://www.xs4all.nl/~mfnboer/twinkle/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="arts speex ilbc zrtp kdehiddenvisibility" + +# Requires libqt-mt actually... Is that *always* built, or do we need to check? +RDEPEND=">=net-libs/ccrtp-1.5.0 + >=dev-cpp/commoncpp2-1.4.2 + $(qt_min_version 3.3.0) + media-libs/libsndfile + dev-libs/boost + speex? ( media-libs/speex ) + ilbc? ( dev-libs/ilbc-rfc3951 ) + zrtp? ( net-libs/libzrtpcpp )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.4.1-badcflags.patch +} + +src_compile() { + local myconf=" \ + $(use_with ilbc) \ + $(use_with arts) \ + $(use_with zrtp) \ + $(use_with speex)" + set-kdedir + kde_src_compile +} + +src_install() { + kde_src_install + dodoc THANKS + domenu twinkle.desktop +} + +pkg_postinst() { + elog "if you get crashes on startup re-emerge commoncpp2 ccrtp and twinkle" + elog "see http://www.xs4all.nl/~mfnboer/twinkle/faq.html#crash_startup" + kde_pkg_postinst +} |