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/expect/files: expect-5.44.1-destdir.patch
Date: Sun, 26 Oct 2008 12:38:10
Message-Id: E1Ku4si-0007cq-DK@stork.gentoo.org
1 mescalinum 08/10/26 12:38:08
2
3 Added: expect-5.44.1-destdir.patch
4 Log:
5 version bump 5.44.1
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 dev-tcltk/expect/files/expect-5.44.1-destdir.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/files/expect-5.44.1-destdir.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/files/expect-5.44.1-destdir.patch?rev=1.1&content-type=text/plain
13
14 Index: expect-5.44.1-destdir.patch
15 ===================================================================
16 --- Makefile.in.orig 2008-10-26 13:15:44.000000000 +0100
17 +++ Makefile.in 2008-10-26 13:16:25.000000000 +0100
18 @@ -256,14 +256,14 @@ install-doc: doc
19 @mkdir -p $(DESTDIR)$(mandir)/man3
20 @echo "Installing documentation in $(DESTDIR)$(mandir)"
21 # install Expectk man page if present
22 - $(INSTALL_DATA) $(srcdir)/expectk.man $(mandir)/man1/expectk.1 ; \
23 + $(INSTALL_DATA) $(srcdir)/expectk.man $(DESTDIR)$(mandir)/man1/expectk.1 ; \
24 # install Expect man page
25 - $(INSTALL_DATA) $(srcdir)/expect.man $(mandir)/man1/expect.1
26 + $(INSTALL_DATA) $(srcdir)/expect.man $(DESTDIR)$(mandir)/man1/expect.1
27 # install man page for Expect and Expectk libraries
28 - $(INSTALL_DATA) $(srcdir)/libexpect.man $(mandir)/man3/libexpect.3
29 + $(INSTALL_DATA) $(srcdir)/libexpect.man $(DESTDIR)$(mandir)/man3/libexpect.3
30 -for i in $(SCRIPT_MANPAGE_LIST) ; do \
31 if [ -f $(srcdir)/example/$$i.man ] ; then \
32 - $(INSTALL_DATA) $(srcdir)/example/$$i.man $(mandir)/man1/$$i.1 ; \
33 + $(INSTALL_DATA) $(srcdir)/example/$$i.man $(DESTDIR)$(mandir)/man1/$$i.1 ; \
34 else true; fi ; \
35 done