diff options
author | Simon Stelling <blubb@gentoo.org> | 2007-02-20 00:07:12 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2007-02-20 00:07:12 +0000 |
commit | 026cbcc073a45d8f5b1fcf0ae3ee69441aaccd7a (patch) | |
tree | 8ccb81bbd69e90333f1c1d21914c536096dfeb5a /x11-misc/xorg-cf-files | |
parent | Redigest for Manifest2 (diff) | |
download | gentoo-2-026cbcc073a45d8f5b1fcf0ae3ee69441aaccd7a.tar.gz gentoo-2-026cbcc073a45d8f5b1fcf0ae3ee69441aaccd7a.tar.bz2 gentoo-2-026cbcc073a45d8f5b1fcf0ae3ee69441aaccd7a.zip |
libdir fix taken from kanaka's overlay
(Portage version: 2.1.2-r9)
Diffstat (limited to 'x11-misc/xorg-cf-files')
-rw-r--r-- | x11-misc/xorg-cf-files/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/x11-misc/xorg-cf-files/ChangeLog b/x11-misc/xorg-cf-files/ChangeLog index 93c9d1bd6f04..4cc6ba87c546 100644 --- a/x11-misc/xorg-cf-files/ChangeLog +++ b/x11-misc/xorg-cf-files/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xorg-cf-files -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xorg-cf-files/ChangeLog,v 1.25 2006/07/19 08:53:37 gmsoft Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xorg-cf-files/ChangeLog,v 1.26 2007/02/20 00:07:12 blubb Exp $ + + 20 Feb 2007; Simon Stelling <blubb@gentoo.org> xorg-cf-files-1.0.2.ebuild: + libdir fix taken from kanaka's overlay 19 Jul 2006; Guy Martin <gmsoft@gentoo.org> xorg-cf-files-1.0.2.ebuild: Stable on hppa. diff --git a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild index a48829726f2e..8353dd036b05 100644 --- a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild +++ b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild,v 1.8 2006/09/03 06:20:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xorg-cf-files/xorg-cf-files-1.0.2.ebuild,v 1.9 2007/02/20 00:07:12 blubb Exp $ # Must be before x-modular eclass is inherited # SNAPSHOT="yes" @@ -17,4 +17,5 @@ DEPEND="" src_install() { x-modular_src_install echo "#define ManDirectoryRoot /usr/share/man" >> ${D}/usr/$(get_libdir)/X11/config/host.def + sed -i -e "s/LibDirName *lib$/LibDirName $(get_libdir)/" ${D}/usr/$(get_libdir)/X11/config/Imake.tmpl || die "failed libdir sed" } |