Gentoo Archives: gentoo-commits

From: "Corentin Chary (iksaif)" <iksaif@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/dfc: metadata.xml dfc-3.0.0.ebuild ChangeLog
Date: Fri, 01 Jun 2012 07:19:15
Message-Id: 20120601071905.363832004B@flycatcher.gentoo.org
1 iksaif 12/06/01 07:19:05
2
3 Added: metadata.xml dfc-3.0.0.ebuild ChangeLog
4 Log:
5 New ebuild for dfc. Original ebuild from Laurent Bachelier.
6
7 (Portage version: 2.1.10.63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-fs/dfc/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dfc/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dfc/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>iksaif@g.o</email>
22 <name>Corentin Chary</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 sys-fs/dfc/dfc-3.0.0.ebuild
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dfc/dfc-3.0.0.ebuild?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dfc/dfc-3.0.0.ebuild?rev=1.1&content-type=text/plain
32
33 Index: dfc-3.0.0.ebuild
34 ===================================================================
35 # Copyright 1999-2012 Gentoo Foundation
36 # Distributed under the terms of the GNU General Public License v2
37 # $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/dfc-3.0.0.ebuild,v 1.1 2012/06/01 07:19:05 iksaif Exp $
38
39 EAPI=4
40 inherit cmake-utils
41
42 DESCRIPTION="A simple CLI tool that display file system usage, with colors"
43 HOMEPAGE="http://projects.gw-computing.net/projects/dfc"
44 SRC_URI="http://projects.gw-computing.net/attachments/download/63/${P}.tar.gz"
45
46 LICENSE="BSD"
47 SLOT="0"
48 KEYWORDS="~amd64 ~x86"
49 IUSE="nls"
50
51 DEPEND="nls? ( virtual/libintl )"
52 RDEPEND="${DEPEND}"
53
54 src_configure() {
55 mycmakeargs=(
56 # avoid installing xdg config in /usr
57 -DXDG_CONFIG_DIR="${EPREFIX}"/etc/xdg
58 # use the standard Gentoo doc path
59 -DDFC_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
60 # disable automagic dependency
61 $(cmake-utils_use nls NLS_ENABLED)
62 )
63
64 cmake-utils_src_configure
65 }
66
67
68
69 1.1 sys-fs/dfc/ChangeLog
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dfc/ChangeLog?rev=1.1&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/dfc/ChangeLog?rev=1.1&content-type=text/plain
73
74 Index: ChangeLog
75 ===================================================================
76 # ChangeLog for sys-fs/dfc
77 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
78 # $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/ChangeLog,v 1.1 2012/06/01 07:19:05 iksaif Exp $
79
80 *dfc-3.0.0 (01 Jun 2012)
81
82 01 Jun 2012; Corentin Chary <iksaif@g.o> +dfc-3.0.0.ebuild,
83 +metadata.xml:
84 New ebuild for dfc. Original ebuild from Laurent Bachelier.