diff options
author | 2004-06-15 02:33:40 +0000 | |
---|---|---|
committer | 2004-06-15 02:33:40 +0000 | |
commit | 71d7aac25cc332300d4113ada03cb72f408d1aef (patch) | |
tree | 2b82c40d24d42808841666f880785fcc15ef2133 /net-p2p/opendchub | |
parent | x86 stable (Manifest recommit) (diff) | |
download | gentoo-2-71d7aac25cc332300d4113ada03cb72f408d1aef.tar.gz gentoo-2-71d7aac25cc332300d4113ada03cb72f408d1aef.tar.bz2 gentoo-2-71d7aac25cc332300d4113ada03cb72f408d1aef.zip |
Fix use invocation
Diffstat (limited to 'net-p2p/opendchub')
-rw-r--r-- | net-p2p/opendchub/ChangeLog | 5 | ||||
-rw-r--r-- | net-p2p/opendchub/opendchub-0.7.14.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-p2p/opendchub/ChangeLog b/net-p2p/opendchub/ChangeLog index 5b2e86fd430c..75e2465e8b9e 100644 --- a/net-p2p/opendchub/ChangeLog +++ b/net-p2p/opendchub/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/opendchub # Copyright 1999-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/opendchub/ChangeLog,v 1.3 2004/05/21 23:02:25 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/opendchub/ChangeLog,v 1.4 2004/06/15 02:33:40 agriffis Exp $ + + 14 Jun 2004; Aron Griffis <agriffis@gentoo.org> opendchub-0.7.14.ebuild: + Fix use invocation 21 May 2004; Jon Hood <squinky86@gentoo.org> opendchub-0.7.14.ebuild: stable on x86 diff --git a/net-p2p/opendchub/opendchub-0.7.14.ebuild b/net-p2p/opendchub/opendchub-0.7.14.ebuild index 28e10e1ef42d..88af044f9d77 100644 --- a/net-p2p/opendchub/opendchub-0.7.14.ebuild +++ b/net-p2p/opendchub/opendchub-0.7.14.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/net-p2p/opendchub/opendchub-0.7.14.ebuild,v 1.3 2004/05/21 23:02:25 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/opendchub/opendchub-0.7.14.ebuild,v 1.4 2004/06/15 02:33:40 agriffis Exp $ inherit eutils @@ -24,7 +24,7 @@ src_unpack() { src_install() { einstall || die "install failed" - if [ `use perl` ] ; then + if use perl ; then exeinto /usr/bin doexe ${FILESDIR}/opendchub_setup.sh dodir /usr/share/opendchub/scripts @@ -35,7 +35,7 @@ src_install() { } pkg_postinst() { - if [ `use perl` ] ; then + if use perl ; then einfo einfo "To set up perl scripts for opendchub to use, please run" einfo "opendchub_setup.sh as the user you will be using opendchub as." |