diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-29 19:06:54 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-29 19:06:54 +0000 |
commit | 0489eaed224885ce83f177621c26fc5d97ca2ff3 (patch) | |
tree | 36ac5a5210051275520cef429b25308698c82a6f /media-libs/xvid | |
parent | Remove myself as maintainer; haven't been using it for a while (diff) | |
download | gentoo-2-0489eaed224885ce83f177621c26fc5d97ca2ff3.tar.gz gentoo-2-0489eaed224885ce83f177621c26fc5d97ca2ff3.tar.bz2 gentoo-2-0489eaed224885ce83f177621c26fc5d97ca2ff3.zip |
enable, disable, flags don't seem to behave.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/xvid')
-rw-r--r-- | media-libs/xvid/xvid-1.2.2-r1.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/media-libs/xvid/xvid-1.2.2-r1.ebuild b/media-libs/xvid/xvid-1.2.2-r1.ebuild index 79e81a5eeec3..3abaf90a123b 100644 --- a/media-libs/xvid/xvid-1.2.2-r1.ebuild +++ b/media-libs/xvid/xvid-1.2.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-1.2.2-r1.ebuild,v 1.1 2009/05/29 17:20:53 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-1.2.2-r1.ebuild,v 1.2 2009/05/29 19:06:54 ssuominen Exp $ EAPI=2 inherit eutils multilib @@ -31,8 +31,13 @@ src_prepare() { } src_configure() { - econf \ - $(use_enable pic assembly) + local myconf + + if use pic; then + myconf="--disable-assembly" + fi + + econf ${myconf} } src_install() { |