diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-11 04:15:14 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-11 04:15:14 +0000 |
commit | aa769c93762a3f74a572648221e32ab5de6065e8 (patch) | |
tree | 2444761f74d59e7ca2f2f2d58cdadbd0963149b6 /media-gfx/xgraph | |
parent | Initial commit, original ebuild by Christophe Radovcic <christophe.radovcic@l... (diff) | |
download | historical-aa769c93762a3f74a572648221e32ab5de6065e8.tar.gz historical-aa769c93762a3f74a572648221e32ab5de6065e8.tar.bz2 historical-aa769c93762a3f74a572648221e32ab5de6065e8.zip |
Initial commit, original ebuild by Christophe Radovcic <christophe.radovcic@laposte.net>, updated by robbat2@gentoo.org
Diffstat (limited to 'media-gfx/xgraph')
-rw-r--r-- | media-gfx/xgraph/ChangeLog | 10 | ||||
-rw-r--r-- | media-gfx/xgraph/Manifest | 3 | ||||
-rw-r--r-- | media-gfx/xgraph/files/digest-xgraph-12.1 | 1 | ||||
-rw-r--r-- | media-gfx/xgraph/xgraph-12.1.ebuild | 25 |
4 files changed, 39 insertions, 0 deletions
diff --git a/media-gfx/xgraph/ChangeLog b/media-gfx/xgraph/ChangeLog new file mode 100644 index 000000000000..948ee7a8bd30 --- /dev/null +++ b/media-gfx/xgraph/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-gfx/xgraph +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xgraph/ChangeLog,v 1.1 2004/01/11 04:15:14 robbat2 Exp $ + +*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/media-gfx/xgraph/Manifest b/media-gfx/xgraph/Manifest new file mode 100644 index 000000000000..16bfb68efb1f --- /dev/null +++ b/media-gfx/xgraph/Manifest @@ -0,0 +1,3 @@ +MD5 5596d39fc3d516cfc680d2719f1d7795 xgraph-12.1.ebuild 759 +MD5 97b075e6f9eae3cc50fa4dacab51a1d7 ChangeLog 440 +MD5 6826e5d007a04ca340b4b97e6672f81f files/digest-xgraph-12.1 63 diff --git a/media-gfx/xgraph/files/digest-xgraph-12.1 b/media-gfx/xgraph/files/digest-xgraph-12.1 new file mode 100644 index 000000000000..c30a40381240 --- /dev/null +++ b/media-gfx/xgraph/files/digest-xgraph-12.1 @@ -0,0 +1 @@ +MD5 c4cbfb3291a607dd274e7fb161b9056a xgraph-12.1.tar.gz 145278 diff --git a/media-gfx/xgraph/xgraph-12.1.ebuild b/media-gfx/xgraph/xgraph-12.1.ebuild new file mode 100644 index 000000000000..2276b6c66bea --- /dev/null +++ b/media-gfx/xgraph/xgraph-12.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xgraph/xgraph-12.1.ebuild,v 1.1 2004/01/11 04:15:14 robbat2 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="~x86 ~sparc" +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/ +} + |