diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2005-06-15 09:12:17 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2005-06-15 09:12:17 +0000 |
commit | 98a6724e598712689deeb40ddf3f71bdb56a8695 (patch) | |
tree | 3bd63177ca239c68a4b08188e01e64a5c225d70d /x11-misc/xdiskusage | |
parent | Version bump. (diff) | |
download | gentoo-2-98a6724e598712689deeb40ddf3f71bdb56a8695.tar.gz gentoo-2-98a6724e598712689deeb40ddf3f71bdb56a8695.tar.bz2 gentoo-2-98a6724e598712689deeb40ddf3f71bdb56a8695.zip |
Version bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'x11-misc/xdiskusage')
-rw-r--r-- | x11-misc/xdiskusage/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xdiskusage/Manifest | 6 | ||||
-rw-r--r-- | x11-misc/xdiskusage/files/digest-xdiskusage-1.48 | 1 | ||||
-rw-r--r-- | x11-misc/xdiskusage/xdiskusage-1.48.ebuild | 31 |
4 files changed, 42 insertions, 3 deletions
diff --git a/x11-misc/xdiskusage/ChangeLog b/x11-misc/xdiskusage/ChangeLog index 2bb4ee9ea5f5..0fef6440a4ea 100644 --- a/x11-misc/xdiskusage/ChangeLog +++ b/x11-misc/xdiskusage/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xdiskusage # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/ChangeLog,v 1.8 2005/04/28 22:31:54 wormo Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/ChangeLog,v 1.9 2005/06/15 09:12:17 pyrania Exp $ + +*xdiskusage-1.48 (15 Jun 2005) + + 15 Jun 2005; Markus Nigbur <pyrania@gentoo.org> +xdiskusage-1.48.ebuild: + Version bump. 28 Apr 2005; Stephanie Lockwood-Childs <wormo@gentoo.org> xdiskusage-1.46.ebuild: diff --git a/x11-misc/xdiskusage/Manifest b/x11-misc/xdiskusage/Manifest index dc5787c2909a..b119b91641dc 100644 --- a/x11-misc/xdiskusage/Manifest +++ b/x11-misc/xdiskusage/Manifest @@ -1,4 +1,6 @@ -MD5 710eb79c1105dfb6092a5246760eca71 ChangeLog 850 -MD5 396489b6f1da40e2868244e103f30ce2 metadata.xml 296 +MD5 7ff9659a414d43f5c97bc771712449f2 ChangeLog 974 MD5 2c12cf58b5e427c18fcebe03370bf35f xdiskusage-1.46.ebuild 765 +MD5 1758c60c407b7f79bcce195015ee776d xdiskusage-1.48.ebuild 766 +MD5 396489b6f1da40e2868244e103f30ce2 metadata.xml 296 MD5 1853a7ed9d290b77adfb1fb172179841 files/digest-xdiskusage-1.46 63 +MD5 a59c5a641ce70122426e1b770900589c files/digest-xdiskusage-1.48 63 diff --git a/x11-misc/xdiskusage/files/digest-xdiskusage-1.48 b/x11-misc/xdiskusage/files/digest-xdiskusage-1.48 new file mode 100644 index 000000000000..be37ec87535b --- /dev/null +++ b/x11-misc/xdiskusage/files/digest-xdiskusage-1.48 @@ -0,0 +1 @@ +MD5 a902aa9d73761ade98256c3cd5c1f533 xdiskusage-1.48.tgz 37332 diff --git a/x11-misc/xdiskusage/xdiskusage-1.48.ebuild b/x11-misc/xdiskusage/xdiskusage-1.48.ebuild new file mode 100644 index 000000000000..6ac5ad1b709c --- /dev/null +++ b/x11-misc/xdiskusage/xdiskusage-1.48.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/xdiskusage-1.48.ebuild,v 1.1 2005/06/15 09:12:17 pyrania Exp $ + +DESCRIPTION="front end to xdu for viewing disk usage graphically under X11" +SRC_URI="http://xdiskusage.sourceforge.net/${P}.tgz" +HOMEPAGE="http://xdiskusage.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="virtual/x11 + x11-libs/fltk + media-libs/glut" + +src_compile() { + econf || die "configure failed" + + make \ + CXXFLAGS="$CXXFLAGS `fltk-config --cxxflags`" \ + LDLIBS="`fltk-config --ldflags`" \ + || die "parallel make failed" +} + +src_install() { + dobin xdiskusage + doman xdiskusage.1 + dodoc README +} |