diff options
author | Ben Lutgens <lamer@gentoo.org> | 2002-06-03 03:50:36 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2002-06-03 03:50:36 +0000 |
commit | 3d2a19fb7aaa03b4a2fa331efcbabc3ab5b97db8 (patch) | |
tree | 89213324bb6b2cb927978e4c4396587e4a136c73 /net-analyzer/rrdtool | |
parent | changed --suexec-gidmin=1000 to 100. Our default "user" group is 100. (diff) | |
download | gentoo-2-3d2a19fb7aaa03b4a2fa331efcbabc3ab5b97db8.tar.gz gentoo-2-3d2a19fb7aaa03b4a2fa331efcbabc3ab5b97db8.tar.bz2 gentoo-2-3d2a19fb7aaa03b4a2fa331efcbabc3ab5b97db8.zip |
*rrdtool-1.0.35-r2 (2 Jun 2002)
2 Jun 2002; Ben Lutgens <lamer@gentoo.org> rrdtool-1.0.35-r1
Changed the install location from /opt/rrdtool to /usr/share/rrdtool
and installed the manpages in /usr/share/man/man1
Diffstat (limited to 'net-analyzer/rrdtool')
-rw-r--r-- | net-analyzer/rrdtool/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild | 45 |
2 files changed, 52 insertions, 1 deletions
diff --git a/net-analyzer/rrdtool/ChangeLog b/net-analyzer/rrdtool/ChangeLog index 53eddc0b0e4f..062c19bc50a1 100644 --- a/net-analyzer/rrdtool/ChangeLog +++ b/net-analyzer/rrdtool/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/rrdtool # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.3 2002/04/15 08:40:16 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.4 2002/06/03 03:50:36 lamer Exp $ + +*rrdtool-1.0.35-r2 (2 Jun 2002) + 2 Jun 2002; Ben Lutgens <lamer@gentoo.org> rrdtool-1.0.35-r1 + + Changed the install location from /opt/rrdtool to /usr/share/rrdtool + and installed the manpages in /usr/share/man/man1 *rrdtool-1.0.35-r1 (15 Apr 2002) diff --git a/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild new file mode 100644 index 000000000000..ce1050963092 --- /dev/null +++ b/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Jerry Alexandratos <jerry@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild,v 1.1 2002/06/03 03:50:36 lamer Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A system to store and display time-series data" +SRC_URI="http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/${P}.tar.gz" +HOMEPAGE="http://ee-staff.ethz.ca/~oetiker/webtools/rrdtool/" + +RDEPEND="sys-devel/perl + tcltk? ( dev-lang/tcl )" + +DEPEND="${RDEPEND} + >=media-libs/libgd-1.8.3" + +src_compile() { + + local myconf + use tcltk \ + && myconf="--with-tcllib=/usr/lib" \ + || myconf="--without-tcllib" + + ./configure \ + --prefix=/usr/share/rrdtool \ + --mandir=/usr/share/man \ + --with-perl-options='INSTALLMAN1DIR=${D}/usr/share/man/man1 INSTALLMAN3DIR=${D}/usr/share/man/man3' \ + ${myconf} || die + + make || die +} + +src_install () { + make \ + DESTDIR=${D} \ + install || die + + make \ + PREFIX=${D}/usr \ + site-perl-install || die + + for i in doc/*.1 ; do + doman $i + done +} |