diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-11-07 20:36:20 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-11-07 20:36:20 +0000 |
commit | 4683d81f6056b946dd92e196e2194a24362e0ec4 (patch) | |
tree | 48db438feb01e445d4d269c3f30fdb9115e65117 /x11-misc/fsv | |
parent | Initial import of libchipcard. ~keyworded for testing (diff) | |
download | gentoo-2-4683d81f6056b946dd92e196e2194a24362e0ec4.tar.gz gentoo-2-4683d81f6056b946dd92e196e2194a24362e0ec4.tar.bz2 gentoo-2-4683d81f6056b946dd92e196e2194a24362e0ec4.zip |
new package
Diffstat (limited to 'x11-misc/fsv')
-rw-r--r-- | x11-misc/fsv/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/fsv/files/digest-fsv-0.9 | 1 | ||||
-rw-r--r-- | x11-misc/fsv/fsv-0.9.ebuild | 33 |
3 files changed, 45 insertions, 0 deletions
diff --git a/x11-misc/fsv/ChangeLog b/x11-misc/fsv/ChangeLog new file mode 100644 index 000000000000..27a6a1ebec4e --- /dev/null +++ b/x11-misc/fsv/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-misc/fsv +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fsv/ChangeLog,v 1.1 2002/11/07 20:36:20 seemant Exp $ + +*fsv-0.9 (07 Nov 2002) + + 07 Nov 2002; Seemant Kulleen <seemant@gentoo.org> fsv-0.9.ebuild ChangeLog + files/digest-fsv-0.9 : + + A graphical file system viewer. Really spiffy looking! Like Jurassic + Park. Ebuild submitted by: pez@apocalyptech.com (CJ Kucera) in bug #9560 diff --git a/x11-misc/fsv/files/digest-fsv-0.9 b/x11-misc/fsv/files/digest-fsv-0.9 new file mode 100644 index 000000000000..2681fa0277b3 --- /dev/null +++ b/x11-misc/fsv/files/digest-fsv-0.9 @@ -0,0 +1 @@ +MD5 0f68e27d638c45dbdf4f66fa19f811f0 fsv-0.9.tar.gz 325572 diff --git a/x11-misc/fsv/fsv-0.9.ebuild b/x11-misc/fsv/fsv-0.9.ebuild new file mode 100644 index 000000000000..76d52759db61 --- /dev/null +++ b/x11-misc/fsv/fsv-0.9.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fsv/fsv-0.9.ebuild,v 1.1 2002/11/07 20:36:20 seemant Exp $ + +IUSE="nls" + +S=${WORKDIR}/${P} +DESCRIPTION="3-Dimensional File System Visualizer" +HOMEPAGE="http://fsv.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~x86" + +DEPEND="virtual/opengl + virtual/x11 + <x11-libs/gtkglarea-1.99" + + +src_compile() { + local myconf + + use nls || myconf="${myconf} --disable-nls" + + econf ${myconf} + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc ABOUT-NLS AUTHORS COPYING NOTES TODO +} |