diff options
author | Brandy Westcott <brandy@gentoo.org> | 2003-10-29 12:50:08 +0000 |
---|---|---|
committer | Brandy Westcott <brandy@gentoo.org> | 2003-10-29 12:50:08 +0000 |
commit | 140551741f8793e98aeb652cdc1ca258f4c57fab (patch) | |
tree | 624edab62a026b9817f5c5bcd7db5da7f68a1287 | |
parent | add working cantus ebuild (diff) | |
download | gentoo-2-140551741f8793e98aeb652cdc1ca258f4c57fab.tar.gz gentoo-2-140551741f8793e98aeb652cdc1ca258f4c57fab.tar.bz2 gentoo-2-140551741f8793e98aeb652cdc1ca258f4c57fab.zip |
Initial import. Closes bug #31863
-rw-r--r-- | x11-misc/xdiskusage/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/xdiskusage/Manifest | 3 | ||||
-rw-r--r-- | x11-misc/xdiskusage/files/digest-xdiskusage-1.46 | 1 | ||||
-rw-r--r-- | x11-misc/xdiskusage/xdiskusage-1.46.ebuild | 32 |
4 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/xdiskusage/ChangeLog b/x11-misc/xdiskusage/ChangeLog new file mode 100644 index 000000000000..41b0d7b8165d --- /dev/null +++ b/x11-misc/xdiskusage/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/xdiskusage +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/ChangeLog,v 1.3 2003/10/29 12:49:51 brandy Exp $ + +*xdiskusage-1.46 (30 Oct 2003) + + 30 Oct 2003; Brandy Westcott brandy@gentoo.org xdiskusage-1.46.ebuild: + Initial import. ebuild submitted by Eloi Granado <eloi.granado@millorsoft.es>. + Closes bug #31863 + diff --git a/x11-misc/xdiskusage/Manifest b/x11-misc/xdiskusage/Manifest new file mode 100644 index 000000000000..6a489e9955d6 --- /dev/null +++ b/x11-misc/xdiskusage/Manifest @@ -0,0 +1,3 @@ +MD5 c8f4cbf4dc7cdee1750a082fda3b3868 ChangeLog 427 +MD5 b8ce4b3daabdd037c4ed8559f6f1f00e xdiskusage-1.46.ebuild 753 +MD5 1853a7ed9d290b77adfb1fb172179841 files/digest-xdiskusage-1.46 63 diff --git a/x11-misc/xdiskusage/files/digest-xdiskusage-1.46 b/x11-misc/xdiskusage/files/digest-xdiskusage-1.46 new file mode 100644 index 000000000000..b13d6cdd3559 --- /dev/null +++ b/x11-misc/xdiskusage/files/digest-xdiskusage-1.46 @@ -0,0 +1 @@ +MD5 d5293b992d884d0f61f8be864a14c01f xdiskusage-1.46.tgz 35998 diff --git a/x11-misc/xdiskusage/xdiskusage-1.46.ebuild b/x11-misc/xdiskusage/xdiskusage-1.46.ebuild new file mode 100644 index 000000000000..3c72168b4a8d --- /dev/null +++ b/x11-misc/xdiskusage/xdiskusage-1.46.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdiskusage/xdiskusage-1.46.ebuild,v 1.1 2003/10/29 12:49:51 brandy Exp $ + +DESCRIPTION="xdiskusage is a 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="~x86" + +DEPEND="virtual/x11 + x11-libs/fltk" + + +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 + +} |