diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2010-05-14 22:59:01 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2010-05-14 22:59:01 +0000 |
commit | 12032a1ddd6d815932f7bdc98ac9c2865e2c7404 (patch) | |
tree | e3732e5e357933052ee99105dff5095cef7d1c5b /x11-wm/fvwm | |
parent | Version bump. Only spqr and umfpack have significant changes (diff) | |
download | gentoo-2-12032a1ddd6d815932f7bdc98ac9c2865e2c7404.tar.gz gentoo-2-12032a1ddd6d815932f7bdc98ac9c2865e2c7404.tar.bz2 gentoo-2-12032a1ddd6d815932f7bdc98ac9c2865e2c7404.zip |
Remove hack for documentation location. Use configure and make instead. Help by Thomas Adam in bug 319173
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/fvwm')
-rw-r--r-- | x11-wm/fvwm/ChangeLog | 6 | ||||
-rw-r--r-- | x11-wm/fvwm/fvwm-2.5.30.ebuild | 10 |
2 files changed, 9 insertions, 7 deletions
diff --git a/x11-wm/fvwm/ChangeLog b/x11-wm/fvwm/ChangeLog index 06841649807a..852251a5060c 100644 --- a/x11-wm/fvwm/ChangeLog +++ b/x11-wm/fvwm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/fvwm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/ChangeLog,v 1.172 2010/05/14 19:53:55 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/ChangeLog,v 1.173 2010/05/14 22:59:01 darkside Exp $ + + 14 May 2010; Jeremy Olexa <darkside@gentoo.org> fvwm-2.5.30.ebuild: + Remove hack for documentation location. Use configure and make instead. + Help by Thomas Adam in bug 319173 *fvwm-2.5.30 (14 May 2010) diff --git a/x11-wm/fvwm/fvwm-2.5.30.ebuild b/x11-wm/fvwm/fvwm-2.5.30.ebuild index 1092f3f17f77..b6280e54c6dc 100644 --- a/x11-wm/fvwm/fvwm-2.5.30.ebuild +++ b/x11-wm/fvwm/fvwm-2.5.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.5.30.ebuild,v 1.1 2010/05/14 19:53:55 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.5.30.ebuild,v 1.2 2010/05/14 22:59:01 darkside Exp $ EAPI=2 @@ -103,11 +103,12 @@ src_configure() { $(use_with stroke stroke-library) \ $(use_enable svg rsvg) \ $(use_enable truetype xft) \ - $(use_enable xinerama) + $(use_enable xinerama) \ + --docdir="/usr/share/doc/${P}" } src_install() { - emake DESTDIR="${D}" install || die + emake DESTDIR="${D}" docdir="/usr/share/doc/${P}" install || die # These are always removed, because gentoo doesn't have anymore # a dev-perl/gtk-perl package, so, these modules are pointless. @@ -149,9 +150,6 @@ src_install() { echo "/usr/bin/fvwm" > "${D}/etc/X11/Sessions/${PN}" || die fperms a+x /etc/X11/Sessions/${PN} || die - # Move docs. - mv "${D}"/usr/share/doc/{${PN},${P}} - dodoc AUTHORS ChangeLog NEWS README \ docs/{ANNOUNCE,BUGS,COMMANDS,CONVENTIONS} \ docs/{DEVELOPERS,error_codes,FAQ,TODO,fvwm.lsm} |