diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-03-28 14:15:38 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-03-28 14:16:20 +0200 |
commit | 84ca2b703b2d3dd717e0ce6b5d4a9838b757c092 (patch) | |
tree | e12ed2c7060c3cdc254e5471d18ff64f38e2a10a /kde-apps | |
parent | net-analyzer/nethogs: Revbump to not install into /usr/local (bug #614144). (diff) | |
download | gentoo-84ca2b703b2d3dd717e0ce6b5d4a9838b757c092.tar.gz gentoo-84ca2b703b2d3dd717e0ce6b5d4a9838b757c092.tar.bz2 gentoo-84ca2b703b2d3dd717e0ce6b5d4a9838b757c092.zip |
kde-apps/kopete: Fix DEPEND, silence cmake warnings
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'kde-apps')
-rw-r--r-- | kde-apps/kopete/kopete-16.12.3-r1.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/kde-apps/kopete/kopete-16.12.3-r1.ebuild b/kde-apps/kopete/kopete-16.12.3-r1.ebuild index fb5807f9319d..be9563fab702 100644 --- a/kde-apps/kopete/kopete-16.12.3-r1.ebuild +++ b/kde-apps/kopete/kopete-16.12.3-r1.ebuild @@ -86,7 +86,6 @@ COMMONDEPEND=" dev-libs/expat dev-libs/openssl:0 >=media-libs/mediastreamer-2.3.0 - media-libs/speex net-libs/libsrtp:= net-libs/ortp:= ) @@ -107,6 +106,7 @@ COMMONDEPEND=" yahoo? ( media-libs/jasper ) " RDEPEND="${COMMONDEPEND} + jingle? ( media-libs/speex ) latex? ( virtual/imagemagick-tools virtual/latex-base @@ -123,17 +123,16 @@ src_configure() { local x x2 # Handle common stuff local mycmakeargs=( - -DWITH_GOOGLETALK=$(usex jingle) -DWITH_LiboRTP=$(usex jingle) -DWITH_Mediastreamer=$(usex jingle) - -DWITH_Speex=$(usex jingle) -DDISABLE_VIDEOSUPPORT=$(usex !v4l) ) # enable protocols for x in ${PROTOCOLS}; do case ${x/+/} in - zeroconf) x2=bonjour ;; + jingle) x2=libjingle ;; xmpp) x2=jabber ;; + zeroconf) x2=bonjour ;; *) x2=${x/+/} ;; esac mycmakeargs+=( -DWITH_${x2}=$(usex ${x/+/}) ) |