summaryrefslogtreecommitdiff
path: root/kde-base/ark
diff options
context:
space:
mode:
Diffstat (limited to 'kde-base/ark')
-rw-r--r--kde-base/ark/Manifest1
-rw-r--r--kde-base/ark/ark-4.13.90.ebuild41
2 files changed, 42 insertions, 0 deletions
diff --git a/kde-base/ark/Manifest b/kde-base/ark/Manifest
new file mode 100644
index 00000000000..20b9efb2542
--- /dev/null
+++ b/kde-base/ark/Manifest
@@ -0,0 +1 @@
+DIST ark-4.13.90.tar.xz 235088 SHA256 daa536f4fb8f35375d1080ddb7644bb486451aae23466485102bd2b2b298d153 SHA512 46b516b159a0331e175895526c09c2a5f9dce89583f4f6bb1a193c87b7907cac7213adeb61822d6997e686c97efad9576eb8aa4a93717a651123fb57e0f6c01e WHIRLPOOL 2f8177fbbc1372f161bb0dbe5bdbff0542b7f1ea62d02324ed1c7f416ff5ef1f83aff8bdb9c96c0c10a86d6d0b31e799130fff2c8d798e96b54ecbaa81fe277c
diff --git a/kde-base/ark/ark-4.13.90.ebuild b/kde-base/ark/ark-4.13.90.ebuild
new file mode 100644
index 00000000000..6755af7aa9e
--- /dev/null
+++ b/kde-base/ark/ark-4.13.90.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+inherit kde4-base
+
+DESCRIPTION="KDE Archiving tool"
+HOMEPAGE="http://www.kde.org/applications/utilities/ark
+http://utils.kde.org/projects/ark"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+archive +bzip2 debug lzma"
+
+DEPEND="
+ $(add_kdebase_dep libkonq)
+ sys-libs/zlib
+ archive? ( >=app-arch/libarchive-2.6.1:=[bzip2?,lzma?,zlib] )
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT="test"
+# dbus problem
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_with archive LibArchive)
+ $(cmake-utils_use_with bzip2 BZip2)
+ $(cmake-utils_use_with lzma LibLZMA)
+ )
+ kde4-base_src_configure
+}
+
+pkg_postinst() {
+ kde4-base_pkg_postinst
+
+ if ! has_version app-arch/rar ; then
+ elog "For creating rar archives, install app-arch/rar"
+ fi
+}