diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-28 21:45:42 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-28 21:45:42 +0000 |
commit | 06e5388fba3d8bd996ddeecddc5629a5aea3cd69 (patch) | |
tree | d5fefb321afc1142d351dbe717f90ffbe5136cae /media-libs/hamlib/hamlib-1.2.1.ebuild | |
parent | Added to ~ppc (diff) | |
download | historical-06e5388fba3d8bd996ddeecddc5629a5aea3cd69.tar.gz historical-06e5388fba3d8bd996ddeecddc5629a5aea3cd69.tar.bz2 historical-06e5388fba3d8bd996ddeecddc5629a5aea3cd69.zip |
fix use invocation, glibc -> libc
Diffstat (limited to 'media-libs/hamlib/hamlib-1.2.1.ebuild')
-rw-r--r-- | media-libs/hamlib/hamlib-1.2.1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media-libs/hamlib/hamlib-1.2.1.ebuild b/media-libs/hamlib/hamlib-1.2.1.ebuild index 814c37866590..5c0e78eda59e 100644 --- a/media-libs/hamlib/hamlib-1.2.1.ebuild +++ b/media-libs/hamlib/hamlib-1.2.1.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/media-libs/hamlib/hamlib-1.2.1.ebuild,v 1.4 2004/06/28 21:35:24 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.1.ebuild,v 1.5 2004/06/28 21:45:42 agriffis Exp $ inherit eutils @@ -13,7 +13,7 @@ SLOT="0" KEYWORDS="~x86 ~alpha ~ppc" IUSE="doc gd X" -RDEPEND="virtual/glibc +RDEPEND="virtual/libc X? ( virtual/x11 ) gd? ( media-libs/libgd )" @@ -40,7 +40,7 @@ src_compile() { $(use_with X x) \ || die "configure failed" emake || die "emake failed" - if [ -n "$(use doc)" ] ; then + if use doc ; then cd doc && make doc || die "make doc failed" fi } @@ -51,7 +51,7 @@ src_install() { die "einstall failed" dodoc AUTHORS PLAN README README.betatester dodoc README.developer LICENSE NEWS TODO - if [ -n "$(use doc)" ]; then + if use doc; then dohtml doc/html/* doman doc/man/man3/* fi |