diff options
author | 2004-07-27 00:00:21 +0000 | |
---|---|---|
committer | 2004-07-27 00:00:21 +0000 | |
commit | 9ac0e98f03ff0f616dfa597df39e37fc448b4582 (patch) | |
tree | e6d1561bf566e3ed3213ca2080e666ab151700d6 /app-crypt/wxchecksums | |
parent | update source in src_unpack; use emake; tidy (Manifest recommit) (diff) | |
download | gentoo-2-9ac0e98f03ff0f616dfa597df39e37fc448b4582.tar.gz gentoo-2-9ac0e98f03ff0f616dfa597df39e37fc448b4582.tar.bz2 gentoo-2-9ac0e98f03ff0f616dfa597df39e37fc448b4582.zip |
fix use invocation
Diffstat (limited to 'app-crypt/wxchecksums')
-rw-r--r-- | app-crypt/wxchecksums/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-crypt/wxchecksums/ChangeLog b/app-crypt/wxchecksums/ChangeLog index 2771b48cb30e..ad6d0a1a6837 100644 --- a/app-crypt/wxchecksums/ChangeLog +++ b/app-crypt/wxchecksums/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/wxchecksums # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/wxchecksums/ChangeLog,v 1.2 2004/07/22 23:40:25 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/wxchecksums/ChangeLog,v 1.3 2004/07/26 23:59:08 mr_bones_ Exp $ + + 26 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> + wxchecksums-1.1.2.ebuild: + fix use invocation 23 Jul 2004; David Holm <dholm@gentoo.org> wxchecksums-1.1.2.ebuild: Added to ~ppc. diff --git a/app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild b/app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild index f6cffa5e281a..2edbf5c6c849 100644 --- a/app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild +++ b/app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild,v 1.2 2004/07/22 23:40:25 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/wxchecksums/wxchecksums-1.1.2.ebuild,v 1.3 2004/07/26 23:59:08 mr_bones_ Exp $ MY_P="wxChecksums-${PV}" @@ -40,15 +40,14 @@ src_install() { cd .. dodoc AUTHORS.txt NEWS.txt README.txt TODO.txt - if [ `use doc` ] ; then + if use doc ; then dohtml -r manual/* fi } pkg_postinst() { - if [ `use doc` ] ; then + if use doc ; then einfo "The manual has been installed in" einfo "/usr/share/doc/${PF}/html" fi } - |