diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 10:17:36 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 10:17:36 +0000 |
commit | 6c3ec5d24402c05cffe69f7c9bcee386a22625b3 (patch) | |
tree | 2bd1503d4ca1b6a604f623b23460bf8aff0d4e27 /app-admin/testdisk/testdisk-6.12.ebuild | |
parent | Convert from "hasq" to "has". (diff) | |
download | historical-6c3ec5d24402c05cffe69f7c9bcee386a22625b3.tar.gz historical-6c3ec5d24402c05cffe69f7c9bcee386a22625b3.tar.bz2 historical-6c3ec5d24402c05cffe69f7c9bcee386a22625b3.zip |
Convert from "useq" to "use".
Package-Manager: portage-2.2.0_alpha43/cvs/Linux x86_64
Diffstat (limited to 'app-admin/testdisk/testdisk-6.12.ebuild')
-rw-r--r-- | app-admin/testdisk/testdisk-6.12.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-admin/testdisk/testdisk-6.12.ebuild b/app-admin/testdisk/testdisk-6.12.ebuild index f2c21d0d5be2..0be3387b72ee 100644 --- a/app-admin/testdisk/testdisk-6.12.ebuild +++ b/app-admin/testdisk/testdisk-6.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-6.12.ebuild,v 1.1 2011/07/03 23:58:06 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-6.12.ebuild,v 1.2 2011/07/08 10:16:50 ssuominen Exp $ EAPI=2 inherit eutils flag-o-matic @@ -46,13 +46,13 @@ src_configure() { econf ${myconf} || die # perform safety checks for NTFS and REISERFS - if useq ntfs && egrep -q 'undef HAVE_LIBNTFS\>' "${S}"/config.h ; then + if use ntfs && egrep -q 'undef HAVE_LIBNTFS\>' "${S}"/config.h ; then die "Failed to find NTFS library." fi - if useq reiserfs && egrep -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then + if use reiserfs && egrep -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then die "Failed to find reiserfs library." fi - if useq jpeg && egrep -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then + if use jpeg && egrep -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then die "Failed to find jpeg library." fi } |