diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-01-29 20:23:15 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-01-29 20:23:15 +0000 |
commit | 24566f6980dbd30422c995a5c35b57f834f0c3fa (patch) | |
tree | 7b6f7f370cb9ac4ecf92dff964ec28fa447e231e /sci-visualization | |
parent | Moved media-gfx/spectromatic to sci-visualization/spectromatic (diff) | |
download | gentoo-2-24566f6980dbd30422c995a5c35b57f834f0c3fa.tar.gz gentoo-2-24566f6980dbd30422c995a5c35b57f834f0c3fa.tar.bz2 gentoo-2-24566f6980dbd30422c995a5c35b57f834f0c3fa.zip |
Moved from media-gfx/xgraph to sci-visualization/xgraph.
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/xgraph/ChangeLog | 25 | ||||
-rw-r--r-- | sci-visualization/xgraph/Manifest | 3 | ||||
-rw-r--r-- | sci-visualization/xgraph/files/digest-xgraph-12.1 | 1 | ||||
-rw-r--r-- | sci-visualization/xgraph/xgraph-12.1.ebuild | 25 |
4 files changed, 54 insertions, 0 deletions
diff --git a/sci-visualization/xgraph/ChangeLog b/sci-visualization/xgraph/ChangeLog new file mode 100644 index 000000000000..d554f7cce5c1 --- /dev/null +++ b/sci-visualization/xgraph/ChangeLog @@ -0,0 +1,25 @@ +# ChangeLog for media-gfx/xgraph +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/ChangeLog,v 1.1 2006/01/29 20:23:15 cryos Exp $ + + 29 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> +xgraph-12.1.ebuild: + Moved from media-gfx/xgraph to sci-visualization/xgraph. + + 03 Nov 2005; Fabian Groffen <grobian@gentoo.org> xgraph-12.1.ebuild: + Marked ~ppc-macos (bug #110940) + + 19 Jul 2005; David Holm <dholm@gentoo.org> xgraph-12.1.ebuild: + Added to ~ppc. + + 23 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org> xgraph-12.1.ebuild: + added ~amd64 to KEYWORDS. fixes #83054 + + 14 Jun 2004; Ferris McCormick <fmccor@gentoo.org> xgraph-12.1.ebuild: + Marked stable for sparc. + +*xgraph-12.1 (10 Jan 2004) + + 10 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> xgraph-12.1.ebuild: + Initial commit, original ebuild by Christophe Radovcic + <christophe.radovcic@laposte.net>, updated by robbat2@gentoo.org + diff --git a/sci-visualization/xgraph/Manifest b/sci-visualization/xgraph/Manifest new file mode 100644 index 000000000000..5128b9d7eab3 --- /dev/null +++ b/sci-visualization/xgraph/Manifest @@ -0,0 +1,3 @@ +MD5 e4947eff055ff9379adae1745ebaf6f7 xgraph-12.1.ebuild 773 +MD5 8c3055d6f45715b64c104f1f29f7085a ChangeLog 835 +MD5 6826e5d007a04ca340b4b97e6672f81f files/digest-xgraph-12.1 63 diff --git a/sci-visualization/xgraph/files/digest-xgraph-12.1 b/sci-visualization/xgraph/files/digest-xgraph-12.1 new file mode 100644 index 000000000000..c30a40381240 --- /dev/null +++ b/sci-visualization/xgraph/files/digest-xgraph-12.1 @@ -0,0 +1 @@ +MD5 c4cbfb3291a607dd274e7fb161b9056a xgraph-12.1.tar.gz 145278 diff --git a/sci-visualization/xgraph/xgraph-12.1.ebuild b/sci-visualization/xgraph/xgraph-12.1.ebuild new file mode 100644 index 000000000000..d85e76d59ba9 --- /dev/null +++ b/sci-visualization/xgraph/xgraph-12.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xgraph/xgraph-12.1.ebuild,v 1.1 2006/01/29 20:23:15 cryos Exp $ + +DESCRIPTION="X11 Plotting Utility" +HOMEPAGE="http://www.isi.edu/nsnam/xgraph/" +SRC_URI="http://www.isi.edu/nsnam/dist/${P}.tar.gz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc-macos sparc ~x86" +IUSE="" +DEPEND="virtual/x11" + +src_install() { + make DESTDIR=${D} install || die + dodoc README* INSTALL + dodir /usr/share/${PN}/examples + insinto /usr/share/${PN}/examples + doins examples/* + dodir /usr/share/man/man1 + mv ${D}/usr/share/man/manm/xgraph.man ${D}/usr/share/man/man1/xgraph.1 + ls ${D}/usr/share/man/manm/ + rm -Rf ${D}/usr/share/man/manm/ +} + |