diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-07-09 18:03:01 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-07-09 18:03:01 +0000 |
commit | 0d1d3a2178b9ee9684c78ff9fb13be0d36b4967d (patch) | |
tree | 3d699d1cbd81b4857317894aa660ece9ba450c47 /app-text/libwps/libwps-0.2.2.ebuild | |
parent | clean out old, vulnerable versions (bug #369069) (diff) | |
download | gentoo-2-0d1d3a2178b9ee9684c78ff9fb13be0d36b4967d.tar.gz gentoo-2-0d1d3a2178b9ee9684c78ff9fb13be0d36b4967d.tar.bz2 gentoo-2-0d1d3a2178b9ee9684c78ff9fb13be0d36b4967d.zip |
Install docs in proper dir (bug #374367 by Chris Mayo) and don't drop so many CFLAGS as did with libwpd (bug #364655).
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'app-text/libwps/libwps-0.2.2.ebuild')
-rw-r--r-- | app-text/libwps/libwps-0.2.2.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-text/libwps/libwps-0.2.2.ebuild b/app-text/libwps/libwps-0.2.2.ebuild index 42868f7fe4f4..2533a633d5a9 100644 --- a/app-text/libwps/libwps-0.2.2.ebuild +++ b/app-text/libwps/libwps-0.2.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.2.ebuild,v 1.1 2011/05/05 14:20:37 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.2.ebuild,v 1.2 2011/07/09 18:03:01 pacho Exp $ -EAPI=4 +EAPI="4" inherit autotools @@ -21,19 +21,19 @@ DEPEND="${RDEPEND} " src_prepare() { - sed -i -e 's: -Wall -Werror -pedantic::' configure.in || die + sed -i -e 's: -Werror::' configure.in || die eautoreconf } src_configure() { econf \ --disable-static \ + --docdir=/usr/share/doc/${PF} \ $(use_with doc docs) \ $(use_enable debug) } src_install() { default - find "${ED}" -name '*.la' -delete } |