Gentoo Archives: gentoo-commits

From: "Federico Ferri (mescalinum)" <mescalinum@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tcltk/blt/files: blt-2.4z-r4-fix-makefile2.patch blt-2.4z-r4-fix-makefile.patch
Date: Sun, 26 Oct 2008 13:51:08
Message-Id: E1Ku61K-0008Ls-7T@stork.gentoo.org
1 mescalinum 08/10/26 13:51:06
2
3 Added: blt-2.4z-r4-fix-makefile2.patch
4 blt-2.4z-r4-fix-makefile.patch
5 Log:
6 revision bump, now using fork from jdc - fixes #212711
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.1 dev-tcltk/blt/files/blt-2.4z-r4-fix-makefile2.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/files/blt-2.4z-r4-fix-makefile2.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/files/blt-2.4z-r4-fix-makefile2.patch?rev=1.1&content-type=text/plain
14
15 Index: blt-2.4z-r4-fix-makefile2.patch
16 ===================================================================
17 --- Makefile.in.orig 2008-10-26 14:36:22.000000000 +0100
18 +++ Makefile.in 2008-10-26 14:37:04.000000000 +0100
19 @@ -47,9 +47,9 @@ install-all:
20 (cd library; $(MAKE) install)
21 (cd man; $(MAKE) install)
22 (cd demos; $(MAKE) install)
23 - $(INSTALL_DATA) $(srcdir)/README $(INSTALL_DIR)$(scriptdir)
24 - $(INSTALL_DATA) $(srcdir)/PROBLEMS $(INSTALL_DIR)$(scriptdir)
25 - $(INSTALL_DATA) $(srcdir)/NEWS $(INSTALL_DIR)$(scriptdir)
26 + $(INSTALL_DATA) $(srcdir)/README $(INSTALL_ROOT)$(scriptdir)
27 + $(INSTALL_DATA) $(srcdir)/PROBLEMS $(INSTALL_ROOT)$(scriptdir)
28 + $(INSTALL_DATA) $(srcdir)/NEWS $(INSTALL_ROOT)$(scriptdir)
29
30 mkdirs:
31 @for i in $(instdirs) ; do \
32
33
34
35 1.1 dev-tcltk/blt/files/blt-2.4z-r4-fix-makefile.patch
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/files/blt-2.4z-r4-fix-makefile.patch?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/files/blt-2.4z-r4-fix-makefile.patch?rev=1.1&content-type=text/plain
39
40 Index: blt-2.4z-r4-fix-makefile.patch
41 ===================================================================
42 --- library/Makefile.in.orig 2008-10-26 14:30:28.000000000 +0100
43 +++ library/Makefile.in 2008-10-26 14:31:40.000000000 +0100
44 @@ -45,7 +45,7 @@ all: pkgIndex
45
46 pkgIndex:
47 rm -f pkgIndex.tcl
48 - sed -e 's/%VERSION%/$(version)/' $(srcdir)/pkgIndex.tcl.in | \
49 + sed -e 's/%VERSION%/$(version)/' $(INSTALL_ROOT)$(srcdir)/pkgIndex.tcl.in | \
50 sed -e 's/%LIB_PREFIX%/$(lib_prefix)/' | \
51 sed -e 's;%LIB_DIR%;$(libdir);' > pkgIndex.tcl
52
53 @@ -58,7 +58,7 @@ install: mkdirs pkgIndex
54 for i in $(miscFiles) ; do \
55 $(INSTALL_DATA) $(srcdir)/$$i $(INSTALL_ROOT)$(scriptdir) ; \
56 done
57 - $(INSTALL_DATA) pkgIndex.tcl $(scriptdir)
58 + $(INSTALL_DATA) pkgIndex.tcl $(INSTALL_ROOT)$(scriptdir)
59
60 mkdirs:
61 @for i in $(instdirs) ; do \