From 002172283a71863b7518c78ec0a20dfd9e4e3123 Mon Sep 17 00:00:00 2001 From: Yixun Lan Date: Fri, 8 May 2015 07:22:40 +0000 Subject: fix missing sys-devel/gettext in DEPEND, bug 547682, thanks Nikoli (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55) --- sys-fs/dfc/ChangeLog | 8 +++++++- sys-fs/dfc/dfc-3.0.5-r1.ebuild | 36 ++++++++++++++++++++++++++++++++++++ sys-fs/dfc/dfc-3.0.5.ebuild | 33 --------------------------------- 3 files changed, 43 insertions(+), 34 deletions(-) create mode 100644 sys-fs/dfc/dfc-3.0.5-r1.ebuild delete mode 100644 sys-fs/dfc/dfc-3.0.5.ebuild (limited to 'sys-fs/dfc') diff --git a/sys-fs/dfc/ChangeLog b/sys-fs/dfc/ChangeLog index 96f3d352e364..3a99726dad2e 100644 --- a/sys-fs/dfc/ChangeLog +++ b/sys-fs/dfc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/dfc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/ChangeLog,v 1.4 2015/04/23 01:42:18 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/ChangeLog,v 1.5 2015/05/08 07:22:40 dlan Exp $ + +*dfc-3.0.5-r1 (08 May 2015) + + 08 May 2015; Yixun Lan -dfc-3.0.5.ebuild, + +dfc-3.0.5-r1.ebuild: + fix missing sys-devel/gettext in DEPEND, bug 547682, thanks Nikoli *dfc-3.0.5 (23 Apr 2015) diff --git a/sys-fs/dfc/dfc-3.0.5-r1.ebuild b/sys-fs/dfc/dfc-3.0.5-r1.ebuild new file mode 100644 index 000000000000..e4e6184bc140 --- /dev/null +++ b/sys-fs/dfc/dfc-3.0.5-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/dfc-3.0.5-r1.ebuild,v 1.1 2015/05/08 07:22:40 dlan Exp $ + +EAPI=5 +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/467/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="nls" + +DEPEND="nls? ( + virtual/libintl + sys-devel/gettext +)" +RDEPEND="nls? ( virtual/libintl )" + +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) + -DLFS_ENABLED=ON + -DGRIM=OFF + ) + + cmake-utils_src_configure +} diff --git a/sys-fs/dfc/dfc-3.0.5.ebuild b/sys-fs/dfc/dfc-3.0.5.ebuild deleted file mode 100644 index 1f48596f9d3e..000000000000 --- a/sys-fs/dfc/dfc-3.0.5.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/dfc-3.0.5.ebuild,v 1.1 2015/04/23 01:42:18 dlan Exp $ - -EAPI=5 -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/467/${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) - -DLFS_ENABLED=ON - -DGRIM=OFF - ) - - cmake-utils_src_configure -} -- cgit v1.2.3-65-gdbad