diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-07 21:56:56 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-07 21:56:56 +0000 |
commit | bd3a4c74af46e41db3759551e081c03e36cae444 (patch) | |
tree | a60d225fa0dc9f8eda36907481b7b20636f7a93c /media-gfx/gnuplot/gnuplot-3.8j.ebuild | |
parent | Get rid of MY_A which serves no purpose (diff) | |
download | historical-bd3a4c74af46e41db3759551e081c03e36cae444.tar.gz historical-bd3a4c74af46e41db3759551e081c03e36cae444.tar.bz2 historical-bd3a4c74af46e41db3759551e081c03e36cae444.zip |
Fix use invocation
Diffstat (limited to 'media-gfx/gnuplot/gnuplot-3.8j.ebuild')
-rw-r--r-- | media-gfx/gnuplot/gnuplot-3.8j.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media-gfx/gnuplot/gnuplot-3.8j.ebuild b/media-gfx/gnuplot/gnuplot-3.8j.ebuild index e08f56457fad..6db98257fe5e 100644 --- a/media-gfx/gnuplot/gnuplot-3.8j.ebuild +++ b/media-gfx/gnuplot/gnuplot-3.8j.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gnuplot/gnuplot-3.8j.ebuild,v 1.6 2004/05/04 23:33:16 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gnuplot/gnuplot-3.8j.ebuild,v 1.7 2004/06/07 21:55:46 agriffis Exp $ MY_P="${P}.0" S=${WORKDIR}/${MY_P} @@ -50,7 +50,7 @@ src_compile() { cd ${S} emake || die - if [ -n "`use doc`" ] ; then + if use doc ; then cd docs make pdf || die fi @@ -64,7 +64,7 @@ src_install () { } pkg_postinst() { - if [ "`use svga`" ] ; then + if use svga ; then einfo "In order to enable ordinary users to use SVGA console graphics" einfo "gnuplot needs to be set up as setuid root. Please note that" einfo "this is usually considered to be a security hazard." |