summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-10-16 19:57:39 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-10-16 19:57:39 +0000
commite4821c0a5e5534ce31308d276ceb243400ad92c1 (patch)
treecb7d1b84c399ffd49315e88d5de177c2eaa59074 /x11-misc
parentVersion bump. This should fix bug #306883. Remove old. (diff)
downloadgentoo-2-e4821c0a5e5534ce31308d276ceb243400ad92c1.tar.gz
gentoo-2-e4821c0a5e5534ce31308d276ceb243400ad92c1.tar.bz2
gentoo-2-e4821c0a5e5534ce31308d276ceb243400ad92c1.zip
New CVS snapshot. Use FLTK-1.3.x instead of FLTK-2.x.
(Portage version: 2.2.0_alpha67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xdiskusage/ChangeLog8
-rw-r--r--x11-misc/xdiskusage/xdiskusage-1.48_p20111016.ebuild27
2 files changed, 34 insertions, 1 deletions
diff --git a/x11-misc/xdiskusage/ChangeLog b/x11-misc/xdiskusage/ChangeLog
index f6da673b8e4c..72f677c638a3 100644
--- a/x11-misc/xdiskusage/ChangeLog
+++ b/x11-misc/xdiskusage/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/xdiskusage
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/ChangeLog,v 1.22 2011/10/16 19:44:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/ChangeLog,v 1.23 2011/10/16 19:57:39 ssuominen Exp $
+
+*xdiskusage-1.48_p20111016 (16 Oct 2011)
+
+ 16 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
+ +xdiskusage-1.48_p20111016.ebuild:
+ New CVS snapshot. Use FLTK-1.3.x instead of FLTK-2.x.
16 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> -xdiskusage-1.48.ebuild,
-files/xdiskusage-1.48-amd64.patch:
diff --git a/x11-misc/xdiskusage/xdiskusage-1.48_p20111016.ebuild b/x11-misc/xdiskusage/xdiskusage-1.48_p20111016.ebuild
new file mode 100644
index 000000000000..88753834e5f1
--- /dev/null
+++ b/x11-misc/xdiskusage/xdiskusage-1.48_p20111016.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/xdiskusage-1.48_p20111016.ebuild,v 1.1 2011/10/16 19:57:39 ssuominen Exp $
+
+EAPI=4
+inherit autotools
+
+DESCRIPTION="front end to xdu for viewing disk usage graphically under X11"
+HOMEPAGE="http://xdiskusage.sourceforge.net/"
+SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE=""
+
+RDEPEND=">=x11-libs/fltk-1.3:1"
+DEPEND="${RDEPEND}
+ app-arch/xz-utils"
+
+src_prepare() { eautoreconf; }
+src_compile() {
+ emake \
+ CXXFLAGS="${CXXFLAGS} $(fltk-config --cxxflags)" \
+ LDLIBS="$(fltk-config --ldflags)"
+}
+src_install() { dobin ${PN}; doman ${PN}.1; dodoc README; }