diff options
author | Daniel Black <dragonheart@gentoo.org> | 2008-04-01 06:37:10 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2008-04-01 06:37:10 +0000 |
commit | 1f874acbdcf0f19daeddaeaea43a274577c8d13a (patch) | |
tree | da8a09da0d5d2b34858f816ffce1ae7167cc2a67 /net-im/twinkle | |
parent | version bump (diff) | |
download | gentoo-2-1f874acbdcf0f19daeddaeaea43a274577c8d13a.tar.gz gentoo-2-1f874acbdcf0f19daeddaeaea43a274577c8d13a.tar.bz2 gentoo-2-1f874acbdcf0f19daeddaeaea43a274577c8d13a.zip |
version bump as per bug #213494 - thanks to Norbert Marx
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-im/twinkle')
-rw-r--r-- | net-im/twinkle/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/twinkle/twinkle-1.2.ebuild | 59 |
2 files changed, 65 insertions, 1 deletions
diff --git a/net-im/twinkle/ChangeLog b/net-im/twinkle/ChangeLog index 8f2f641efa91..3bc5616a3bac 100644 --- a/net-im/twinkle/ChangeLog +++ b/net-im/twinkle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/twinkle # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/ChangeLog,v 1.37 2008/01/30 23:00:41 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/ChangeLog,v 1.38 2008/04/01 06:37:10 dragonheart Exp $ + +*twinkle-1.2 (01 Apr 2008) + + 01 Apr 2008; Daniel Black <dragonheart@gentoo.org> +twinkle-1.2.ebuild: + version bump as per bug #213494 - thanks to Norbert Marx 30 Jan 2008; Brent Baude <ranger@gentoo.org> twinkle-1.1.ebuild: Marking twinkle-1.1 ~ppc64 diff --git a/net-im/twinkle/twinkle-1.2.ebuild b/net-im/twinkle/twinkle-1.2.ebuild new file mode 100644 index 000000000000..9f2ba4808a09 --- /dev/null +++ b/net-im/twinkle/twinkle-1.2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/twinkle-1.2.ebuild,v 1.1 2008/04/01 06:37:10 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 ~ppc64 ~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 ) + media-libs/alsa-lib" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +pkg_setup() { + if use speex && has_version '~media-libs/speex-1.2_beta2' && + ! built_with_use 'media-libs/speex' 'wideband' ; then + eerror "You need to build media-libs/speex with USE=wideband enabled." + die "Speex w/o wideband-support detected." + fi +} + +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 +} |