summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmanuele Giaquinta <exg@gentoo.org>2006-05-02 22:14:38 +0000
committerEmanuele Giaquinta <exg@gentoo.org>2006-05-02 22:14:38 +0000
commit0fb72e52a1d6b0430ce65ba5e32fed3f76bb7633 (patch)
tree1eecaa018eb8141c5dffa6e0be723179be6e5cd0 /x11-misc/xorg-cf-files
parentStable on SPARC. (diff)
downloadgentoo-2-0fb72e52a1d6b0430ce65ba5e32fed3f76bb7633.tar.gz
gentoo-2-0fb72e52a1d6b0430ce65ba5e32fed3f76bb7633.tar.bz2
gentoo-2-0fb72e52a1d6b0430ce65ba5e32fed3f76bb7633.zip
Fix src_install to append to, not overwrite host.def to set ManDirectoryRoot.
(Portage version: 2.1_pre10-r2)
Diffstat (limited to 'x11-misc/xorg-cf-files')
-rw-r--r--x11-misc/xorg-cf-files/ChangeLog8
-rw-r--r--x11-misc/xorg-cf-files/files/digest-xorg-cf-files-1.0.1-r33
-rw-r--r--x11-misc/xorg-cf-files/xorg-cf-files-1.0.1-r3.ebuild20
3 files changed, 30 insertions, 1 deletions
diff --git a/x11-misc/xorg-cf-files/ChangeLog b/x11-misc/xorg-cf-files/ChangeLog
index e6d0dcf30f0e..418bfd6e5290 100644
--- a/x11-misc/xorg-cf-files/ChangeLog
+++ b/x11-misc/xorg-cf-files/ChangeLog
@@ -1,6 +1,12 @@
# 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.17 2006/04/20 03:18:51 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xorg-cf-files/ChangeLog,v 1.18 2006/05/02 22:14:38 exg Exp $
+
+*xorg-cf-files-1.0.1-r3 (02 May 2006)
+
+ 02 May 2006; Emanuele Giaquinta <exg@gentoo.org>
+ -xorg-cf-files-1.0.1-r2.ebuild, +xorg-cf-files-1.0.1-r3.ebuild:
+ Fix src_install to append to, not overwrite host.def to set ManDirectoryRoot.
*xorg-cf-files-1.0.1-r2 (20 Apr 2006)
diff --git a/x11-misc/xorg-cf-files/files/digest-xorg-cf-files-1.0.1-r3 b/x11-misc/xorg-cf-files/files/digest-xorg-cf-files-1.0.1-r3
new file mode 100644
index 000000000000..dede8a292b3e
--- /dev/null
+++ b/x11-misc/xorg-cf-files/files/digest-xorg-cf-files-1.0.1-r3
@@ -0,0 +1,3 @@
+MD5 e3107572a02a344b5f5da57a1eb95732 xorg-cf-files-1.0.1.tar.bz2 263753
+RMD160 08daeb2ef3fc1aca030f36f25d89dc4507f9cbc5 xorg-cf-files-1.0.1.tar.bz2 263753
+SHA256 af407f43cb730b99ec7266de69dc2231ed628d4abf8f222a922f0627e84818ea xorg-cf-files-1.0.1.tar.bz2 263753
diff --git a/x11-misc/xorg-cf-files/xorg-cf-files-1.0.1-r3.ebuild b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.1-r3.ebuild
new file mode 100644
index 000000000000..e9ff5643dfd5
--- /dev/null
+++ b/x11-misc/xorg-cf-files/xorg-cf-files-1.0.1-r3.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2006 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.1-r3.ebuild,v 1.1 2006/05/02 22:14:38 exg Exp $
+
+# Must be before x-modular eclass is inherited
+# SNAPSHOT="yes"
+
+inherit x-modular
+
+DESCRIPTION="Old Imake-related build files"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+RDEPEND=""
+DEPEND="${RDEPEND}"
+
+src_install() {
+ x-modular_src_install
+
+ echo "#define ProjectRoot /usr" > ${D}/usr/$(get_libdir)/X11/config/host.def
+ echo "#define ManDirectoryRoot /usr/share/man" >> ${D}/usr/$(get_libdir)/X11/config/host.def
+}