diff options
Diffstat (limited to 'net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild')
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild deleted file mode 100644 index 2248138f835b..000000000000 --- a/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.35-r2.ebuild,v 1.2 2002/07/11 06:30:45 drobbins 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 -} |