You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fs/dfc/dfc-3.0.0.ebuild

32 lines
872 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/dfc-3.0.0.ebuild,v 1.2 2013/12/29 17:17:41 maekke Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="A simple CLI tool that display file system usage, with colors"
HOMEPAGE="http://projects.gw-computing.net/projects/dfc"
SRC_URI="http://projects.gw-computing.net/attachments/download/63/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="nls"
DEPEND="nls? ( virtual/libintl )"
RDEPEND="${DEPEND}"
src_configure() {
mycmakeargs=(
# avoid installing xdg config in /usr
-DXDG_CONFIG_DIR="${EPREFIX}"/etc/xdg
# use the standard Gentoo doc path
-DDFC_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
# disable automagic dependency
$(cmake-utils_use nls NLS_ENABLED)
)
cmake-utils_src_configure
}