diff options
author | NP-Hardass <NP-Hardass@gentoo.org> | 2016-03-19 15:04:06 -0400 |
---|---|---|
committer | NP-Hardass <NP-Hardass@gentoo.org> | 2016-03-19 15:05:07 -0400 |
commit | 17caa37b6e7a5ba576e5068334ce40ef28060884 (patch) | |
tree | b91d6c39d5ad7283b57c28ca3185678462a85853 /sys-apps/duc | |
parent | dev-libs/botan: cleanup (diff) | |
download | gentoo-17caa37b6e7a5ba576e5068334ce40ef28060884.tar.gz gentoo-17caa37b6e7a5ba576e5068334ce40ef28060884.tar.bz2 gentoo-17caa37b6e7a5ba576e5068334ce40ef28060884.zip |
sys-apps/duc: Initial commit; disk usage analyzer
Package-Manager: portage-2.2.26
Diffstat (limited to 'sys-apps/duc')
-rw-r--r-- | sys-apps/duc/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/duc/duc-1.4.1.ebuild | 90 | ||||
-rw-r--r-- | sys-apps/duc/duc-9999.ebuild | 90 | ||||
-rw-r--r-- | sys-apps/duc/metadata.xml | 24 |
4 files changed, 205 insertions, 0 deletions
diff --git a/sys-apps/duc/Manifest b/sys-apps/duc/Manifest new file mode 100644 index 000000000000..e3456ddb089c --- /dev/null +++ b/sys-apps/duc/Manifest @@ -0,0 +1 @@ +DIST duc-1.4.1.tar.gz 325689 SHA256 04c75ea1cb3ce2d66c5628d999eae2accf66f56b74a9a6879dc8ffb8c9d66bf3 SHA512 88aa8f51651adf019c3a91c83eca308b822ff7569d6f6d30cf91338740ec9b0bd21c4f5dd783cf46c8d67aad6b03ad908cd7ed472e5db6feaf66ee02582d9f88 WHIRLPOOL da7311bdbec547569c08d976e508bde23969a0a387ec9c9baf345c004a03afd27ec8bb8fbf09c366bc06647cb750e93d51c583bcf84b6f5d706601192aa9bb4c diff --git a/sys-apps/duc/duc-1.4.1.ebuild b/sys-apps/duc/duc-1.4.1.ebuild new file mode 100644 index 000000000000..3c2974ee0706 --- /dev/null +++ b/sys-apps/duc/duc-1.4.1.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF="true" +AUTOTOOLS_IN_SOURCE_BUILD="true" +inherit autotools-utils + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/zevv/duc.git" + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/zevv/${PN}/releases/download/${PV}/${P}.tar.gz" +fi + +DESCRIPTION="A library and suite of tools for inspecting disk usage" +HOMEPAGE="https://github.com/zevv/duc" + +LICENSE="GPL-2" +SLOT="0" +IUSE="cairo gui -leveldb ncurses -sqlite +tokyocabinet X" + +REQUIRED_USE=" + ^^ ( tokyocabinet leveldb sqlite ) + X? ( cairo gui ) +" + +DEPEND=" + cairo? ( x11-libs/cairo x11-libs/pango ) + gui? ( + X? ( + x11-libs/cairo[X] + x11-libs/libX11 + x11-libs/pango[X] + ) + !X? ( virtual/opengl ) + ) + leveldb? ( dev-libs/leveldb ) + ncurses? ( sys-libs/ncurses:= ) + sqlite? ( dev-db/sqlite:3 ) + tokyocabinet? ( dev-db/tokyocabinet ) +" +RDEPEND="${DEPEND}" + +src_unpack() { + if [[ "${PV}" == "9999" ]]; then + git-r3_src_unpack + else + unpack ${A} + fi +} + +src_prepare() { + sed -i -e "/ldconfig/d" -e "/install-exec-hook/d" Makefile.am || die + + autotools-utils_src_prepare +} + +src_configure() { + local myconf=( + --disable-static + $(use_with ncurses ui) + ) + + if use tokyocabinet; then + myconf+=( --with-db-backend=tokyocabinet ) + elif use leveldb; then + myconf+=( --with-db-backend=leveldb ) + else + myconf+=( --with-db-backend=sqlite3 ) + fi + + # Necessary logic for cairo + if use gui && use X; then + # X backend GUI + myconf+=( --enable-x11 --disable-opengl --enable-cairo ) + elif use gui; then + # OpenGL backend GUI + myconf+=( --disable-x11 --enable-opengl $(use_enable cairo) ) + else + # No GUI + myconf+=( $(use_enable cairo) ) + fi + + autotools-utils_src_configure +} diff --git a/sys-apps/duc/duc-9999.ebuild b/sys-apps/duc/duc-9999.ebuild new file mode 100644 index 000000000000..3c2974ee0706 --- /dev/null +++ b/sys-apps/duc/duc-9999.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF="true" +AUTOTOOLS_IN_SOURCE_BUILD="true" +inherit autotools-utils + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/zevv/duc.git" + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/zevv/${PN}/releases/download/${PV}/${P}.tar.gz" +fi + +DESCRIPTION="A library and suite of tools for inspecting disk usage" +HOMEPAGE="https://github.com/zevv/duc" + +LICENSE="GPL-2" +SLOT="0" +IUSE="cairo gui -leveldb ncurses -sqlite +tokyocabinet X" + +REQUIRED_USE=" + ^^ ( tokyocabinet leveldb sqlite ) + X? ( cairo gui ) +" + +DEPEND=" + cairo? ( x11-libs/cairo x11-libs/pango ) + gui? ( + X? ( + x11-libs/cairo[X] + x11-libs/libX11 + x11-libs/pango[X] + ) + !X? ( virtual/opengl ) + ) + leveldb? ( dev-libs/leveldb ) + ncurses? ( sys-libs/ncurses:= ) + sqlite? ( dev-db/sqlite:3 ) + tokyocabinet? ( dev-db/tokyocabinet ) +" +RDEPEND="${DEPEND}" + +src_unpack() { + if [[ "${PV}" == "9999" ]]; then + git-r3_src_unpack + else + unpack ${A} + fi +} + +src_prepare() { + sed -i -e "/ldconfig/d" -e "/install-exec-hook/d" Makefile.am || die + + autotools-utils_src_prepare +} + +src_configure() { + local myconf=( + --disable-static + $(use_with ncurses ui) + ) + + if use tokyocabinet; then + myconf+=( --with-db-backend=tokyocabinet ) + elif use leveldb; then + myconf+=( --with-db-backend=leveldb ) + else + myconf+=( --with-db-backend=sqlite3 ) + fi + + # Necessary logic for cairo + if use gui && use X; then + # X backend GUI + myconf+=( --enable-x11 --disable-opengl --enable-cairo ) + elif use gui; then + # OpenGL backend GUI + myconf+=( --disable-x11 --enable-opengl $(use_enable cairo) ) + else + # No GUI + myconf+=( $(use_enable cairo) ) + fi + + autotools-utils_src_configure +} diff --git a/sys-apps/duc/metadata.xml b/sys-apps/duc/metadata.xml new file mode 100644 index 000000000000..cafbe01dd4b2 --- /dev/null +++ b/sys-apps/duc/metadata.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>NP-Hardass@gentoo.org</email> + <name>NP-Hardass</name> + </maintainer> + <maintainer type="person"> + <email>duc@zevv.nl</email> + <name>Ico Doornekamp</name> + </maintainer> + <use> + <flag name="cairo">Build support for exporting to PNG and PDF with <pkg>x11-libs/cairo</pkg></flag> + <flag name="gui">Build support for a graphical client</flag> + <flag name="leveldb">Use <pkg>dev-libs/leveldb</pkg> as the backend</flag> + <flag name="ncurses">Build support for the ncurses client</flag> + <flag name="sqlite">Use <pkg>dev-db/sqlite</pkg>:3 as the backend</flag> + <flag name="tokyocabinet">Use <pkg>dev-db/tokyocabinet</pkg> as the backend</flag> + <flag name="X">Use X11 for the GUI instead of OpenGL. This is the recommended option</flag> + </use> + <upstream> + <remote-id type="github">zevv/duc</remote-id> + </upstream> +</pkgmetadata> |