summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2009-05-08 22:03:14 +0000
committerHanno Böck <hanno@gentoo.org>2009-05-08 22:03:14 +0000
commitce025c2bc3904f3ef6dcb655c7d4abd02e8018bc (patch)
tree7c4ea6be2243fe6492e23e509042251b03a07ea8 /sys-libs
parentMarked ~hppa (bug #265417). (diff)
downloadgentoo-2-ce025c2bc3904f3ef6dcb655c7d4abd02e8018bc.tar.gz
gentoo-2-ce025c2bc3904f3ef6dcb655c7d4abd02e8018bc.tar.bz2
gentoo-2-ce025c2bc3904f3ef6dcb655c7d4abd02e8018bc.zip
libhx: don't install pdf doc twice
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libhx/ChangeLog5
-rw-r--r--sys-libs/libhx/libhx-2.7.ebuild6
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index 9aab2fa9fa4a..72ff6e03d6c3 100644
--- a/sys-libs/libhx/ChangeLog
+++ b/sys-libs/libhx/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libhx
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.13 2009/05/07 19:22:38 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.14 2009/05/08 22:03:14 hanno Exp $
+
+ 08 May 2009; Hanno Boeck <hanno@gentoo.org> libhx-2.7.ebuild:
+ Don't install pdf doc twice, resolves #267696.
*libhx-2.7 (07 May 2009)
diff --git a/sys-libs/libhx/libhx-2.7.ebuild b/sys-libs/libhx/libhx-2.7.ebuild
index 86c9c225b2ff..41313af23884 100644
--- a/sys-libs/libhx/libhx-2.7.ebuild
+++ b/sys-libs/libhx/libhx-2.7.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/sys-libs/libhx/libhx-2.7.ebuild,v 1.1 2009/05/07 19:22:38 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-2.7.ebuild,v 1.2 2009/05/08 22:03:14 hanno Exp $
DESCRIPTION="Platform independent library providing basic system functions."
HOMEPAGE="http://libhx.sourceforge.net"
@@ -14,11 +14,11 @@ RDEPEND="${DEPEND}"
S="${WORKDIR}/libHX-${PV}"
src_compile() {
- econf || die "econf failed"
+ econf --docdir="/usr/share/doc/${PF}" || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
- dodoc doc/* || die
+ dodoc doc/*.txt || die
}