forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.20.1
- Loading branch information
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST kget-15.08.0.tar.xz 1081832 SHA256 9579242c69a8da363fdd335450472230ba3fc2f302b5e30b99958c5c3629cb59 SHA512 0bcc59a8fa9f198cd8abadb4cfa284c1bd18a68697a5efec4228f8e5c46e1fb7422f738c238768f9248d74656f4108da5396a9bb8406ea95b50ee21ac7a5e2a2 WHIRLPOOL 3a25a73c95a418b342e9833806c79865738f07a46fb3c944ed003fa5f034ec846c1cf15c9a414095d1b6ebd08f8ff92fbe414f0638be944f6bda619c6bfe3c66 | ||
DIST kget-4.14.3.tar.xz 1075868 SHA256 696bd583f09d37f8939031b1d4a526076362018d43506a38fa3a54af9d2e32ec SHA512 1062f0db8a437486af3051892dc46a9065c92c524d11ab68cdcbe648010a9f04f3f1728a345c4f96c93665215aba56e47da6b66f4908fb1cd0902867d20809aa WHIRLPOOL 45571ef5cc9aef3ad6fbff22134d766f17c058f8c58fcaeb1f04034b419d4adbc88a87c8c8ba83f740f05d9427586e3b7eab6f2a235e555de52900bd3451529f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
KDE_HANDBOOK="optional" | ||
inherit kde4-base | ||
|
||
DESCRIPTION="An advanced download manager for KDE" | ||
HOMEPAGE="https://www.kde.org/applications/internet/kget/" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="debug bittorrent gpg mms sqlite webkit" | ||
|
||
RDEPEND=" | ||
app-crypt/qca:2[qt4] | ||
$(add_kdeapps_dep libkonq) | ||
$(add_kdebase_dep libkworkspace '' 4.11) | ||
bittorrent? ( >=net-libs/libktorrent-1.0.3 ) | ||
gpg? ( || ( $(add_kdeapps_dep gpgmepp) $(add_kdebase_dep kdepimlibs) ) ) | ||
mms? ( media-libs/libmms ) | ||
sqlite? ( dev-db/sqlite:3 ) | ||
webkit? ( >=kde-misc/kwebkitpart-0.9.6:4 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-libs/boost | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DWITH_NepomukCore=OFF | ||
-DWITH_NepomukWidgets=OFF | ||
$(cmake-utils_use_with bittorrent KTorrent) | ||
$(cmake-utils_use_with gpg QGpgme) | ||
$(cmake-utils_use_with mms LibMms) | ||
$(cmake-utils_use_with sqlite) | ||
$(cmake-utils_use_with webkit KWebKitPart) | ||
) | ||
kde4-base_src_configure | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters