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.12.80.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..639dc4fcae5
--- /dev/null
+++ b/kde-base/ark/Manifest
@@ -0,0 +1 @@
+DIST ark-4.12.80.tar.xz 229960 SHA256 8771e3076bcae7cd7d16e508f537d8c7fda3296d3661b781e71249cb72d1807b SHA512 88151329cf8e556ef94f8754328b4fb710fbd9bd22a4c256b4f7d91539cb82b4cc4c655e6e7d9998bdc5fe7617f1b4905e2fbed0bf64fd5baacff3f8e7b7a964 WHIRLPOOL fa9fce5eec0737d9422a0cb519619919cd893d1751fca60b22d599a8ccde157494d24f6844cbf148310814151ddd529e632146c6b1862b4ab9ebb30afccab906
diff --git a/kde-base/ark/ark-4.12.80.ebuild b/kde-base/ark/ark-4.12.80.ebuild
new file mode 100644
index 00000000000..4459b60a0dd
--- /dev/null
+++ b/kde-base/ark/ark-4.12.80.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() {
+ 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
+}