Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/cln/files: cln-1.2.2-examples.patch cln-1.2.2-docs.patch
Date: Tue, 30 Sep 2008 12:58:13
Message-Id: E1Kkenq-0001Or-Pu@stork.gentoo.org
1 bicatali 08/09/30 12:58:10
2
3 Added: cln-1.2.2-examples.patch cln-1.2.2-docs.patch
4 Log:
5 Documentation and examples are not installed by default anymore but with use flags. Pre-pocessor flags on sparc don't use asm (see bug #238444).
6 (Portage version: 2.2_rc9/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.1 sci-libs/cln/files/cln-1.2.2-examples.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cln/files/cln-1.2.2-examples.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cln/files/cln-1.2.2-examples.patch?rev=1.1&content-type=text/plain
13
14 Index: cln-1.2.2-examples.patch
15 ===================================================================
16 --- tests/Makefile.in~ 2006-10-11 20:08:32.000000000 +0100
17 +++ tests/Makefile.in 2008-09-29 13:19:05.000000000 +0100
18 @@ -95,7 +95,9 @@
19 MODULES_timesqrtmodp = timesqrtmodp
20 MODULES_main = main
21
22 -all : exam${EXEEXT} tests${EXEEXT}
23 +all :
24 +
25 +build : exam${EXEEXT} tests${EXEEXT}
26
27 %.s : %.c
28 ${CC} ${CFLAGS} ${CPPFLAGS} ${TARGET_ARCH} -S $< -o $@
29 @@ -171,7 +173,7 @@
30
31 uninstall :
32
33 -check : all
34 +check : build
35 ./exam${EXEEXT}
36 ./tests${EXEEXT}
37
38 --- examples/Makefile.in~ 2006-09-06 21:09:08.000000000 +0100
39 +++ examples/Makefile.in 2008-09-29 13:17:24.000000000 +0100
40 @@ -62,7 +62,8 @@
41 MODULES_perfnum = perfnum
42 MODULES_pi = pi
43
44 -all : $(addsuffix ${EXEEXT}, contfrac e fibonacci legendre lucaslehmer nextprime perfnum pi)
45 +all:
46 +build : $(addsuffix ${EXEEXT}, contfrac e fibonacci legendre lucaslehmer nextprime perfnum pi)
47
48 %.s : %.c
49 ${CC} ${CFLAGS} ${CPPFLAGS} ${TARGET_ARCH} -S $< -o $@
50
51
52
53 1.1 sci-libs/cln/files/cln-1.2.2-docs.patch
54
55 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cln/files/cln-1.2.2-docs.patch?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cln/files/cln-1.2.2-docs.patch?rev=1.1&content-type=text/plain
57
58 Index: cln-1.2.2-docs.patch
59 ===================================================================
60 --- doc/Makefile.in~ 2008-01-19 20:50:47.000000000 +0000
61 +++ doc/Makefile.in 2008-09-29 13:08:08.000000000 +0100
62 @@ -80,14 +80,10 @@
63 echo " install-info --info-dir=${DESTDIR}${infodir} ${DESTDIR}${infodir}/${PACKAGE}.info";\
64 install-info --info-dir=${DESTDIR}${infodir} ${DESTDIR}${infodir}/${PACKAGE}.info || :;\
65 else : ; fi
66 - ${INSTALL_DATA} ${srcdir}/${PACKAGE}/${PACKAGE}*.html ${DESTDIR}${htmldir}
67 - ${INSTALL_DATA} ${srcdir}/${PACKAGE}.dvi ${DESTDIR}${dvidir}/${PACKAGE}.dvi
68
69 installdirs : force
70 ${MKDIR} ${DESTDIR}${datadir}
71 ${MKDIR} ${DESTDIR}${infodir}
72 - ${MKDIR} ${DESTDIR}${htmldir}
73 - ${MKDIR} ${DESTDIR}${dvidir}
74
75 uninstall : force
76 @if (install-info --version && \