Gentoo Archives: gentoo-commits

From: "Jurek Bartuszek (jurek)" <jurek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/taglib-sharp/files: taglib-sharp-gnome-sharp-toggle.patch taglib-sharp-fix-docdir.patch taglib-sharp-fix-docs-test.patch taglib-sharp-fix-sandbox-violation.patch digest-taglib-sharp-2.0.2.0
Date: Thu, 03 Jan 2008 22:08:57
Message-Id: E1JAYF8-0000BY-6Z@stork.gentoo.org
1 jurek 08/01/03 22:08:50
2
3 Added: taglib-sharp-gnome-sharp-toggle.patch
4 taglib-sharp-fix-docdir.patch
5 taglib-sharp-fix-docs-test.patch
6 taglib-sharp-fix-sandbox-violation.patch
7 digest-taglib-sharp-2.0.2.0
8 Log:
9 dev-dotnet/taglib-sharp: version bump (bug #192292)
10 (Portage version: 2.1.3.19)
11
12 Revision Changes Path
13 1.1 dev-dotnet/taglib-sharp/files/taglib-sharp-gnome-sharp-toggle.patch
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-gnome-sharp-toggle.patch?rev=1.1&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-gnome-sharp-toggle.patch?rev=1.1&content-type=text/plain
17
18 Index: taglib-sharp-gnome-sharp-toggle.patch
19 ===================================================================
20 --- taglib-sharp-2.0.2.0/configure.ac 2007-07-04 03:37:05.000000000 +0530
21 +++ taglib-sharp-2.0.2.0.new/configure.ac 2007-11-26 01:31:23.938210509 +0530
22 @@ -83,10 +83,20 @@
23 AM_CONDITIONAL(BUILD_DOCS, false)
24 fi
25
26 -PKG_CHECK_MODULES(GNOME_SHARP, gnome-sharp-2.0, have_gnome_sharp=yes, have_gnome_sharp=no)
27 -if test "x$have_gnome_sharp" = "xyes"; then
28 - AC_SUBST(GNOME_SHARP_LIBS)
29 - AM_CONDITIONAL(HAVE_GNOME_SHARP, true)
30 +AC_ARG_ENABLE([gnome-sharp],
31 + AC_HELP_STRING([--enable-gnome-sharp], [Build support for GNOME]),
32 + enable_gnome_sharp=$enableval,
33 + enable_gnome_sharp=no)
34 +
35 +if test "x$enable_gnome_sharp" = "xyes"; then
36 + PKG_CHECK_MODULES(GNOME_SHARP, gnome-sharp-2.0, have_gnome_sharp=yes, have_gnome_sharp=no)
37 + if test "x$have_gnome_sharp" = "xyes"; then
38 + AC_SUBST(GNOME_SHARP_LIBS)
39 + AM_CONDITIONAL(HAVE_GNOME_SHARP, true)
40 + else
41 + AC_MSG_ERROR([Could not find gnome-sharp dependencies])
42 + AM_CONDITIONAL(HAVE_GNOME_SHARP, false)
43 + fi
44 else
45 AM_CONDITIONAL(HAVE_GNOME_SHARP, false)
46 fi
47
48
49
50 1.1 dev-dotnet/taglib-sharp/files/taglib-sharp-fix-docdir.patch
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-fix-docdir.patch?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-fix-docdir.patch?rev=1.1&content-type=text/plain
54
55 Index: taglib-sharp-fix-docdir.patch
56 ===================================================================
57 diff -Naur taglib-sharp-2.0.2.0/docs/Makefile.am taglib-sharp-2.0.2.0.new/docs/Makefile.am
58 --- taglib-sharp-2.0.2.0/docs/Makefile.am 2007-11-26 00:56:05.680848050 +0530
59 +++ taglib-sharp-2.0.2.0.new/docs/Makefile.am 2007-11-26 00:55:41.760847655 +0530
60 @@ -9,7 +9,7 @@
61 if BUILD_DOCS
62 all:
63
64 -monodocdir = $(DESTDIR)$(DOCDIR)
65 +monodocdir = $(DOCDIR)
66 monodoc_DATA = \
67 taglib-sharp-docs.zip \
68 taglib-sharp-docs.tree \
69 diff -Naur taglib-sharp-2.0.2.0/docs/Makefile.in taglib-sharp-2.0.2.0.new/docs/Makefile.in
70 --- taglib-sharp-2.0.2.0/docs/Makefile.in 2007-11-26 00:56:05.681849318 +0530
71 +++ taglib-sharp-2.0.2.0.new/docs/Makefile.in 2007-11-26 00:55:22.030848788 +0530
72 @@ -162,7 +162,7 @@
73 $(top_builddir)/src/taglib-sharp.dll
74
75 ASSEMBLIES_BUILD = $(foreach asm,$(ASSEMBLIES),$(addprefix -assembly:,$(asm)))
76 -@BUILD_DOCS_TRUE@monodocdir = $(DESTDIR)$(DOCDIR)
77 +@BUILD_DOCS_TRUE@monodocdir = $(DOCDIR)
78 @BUILD_DOCS_TRUE@monodoc_DATA = \
79 @BUILD_DOCS_TRUE@ taglib-sharp-docs.zip \
80 @BUILD_DOCS_TRUE@ taglib-sharp-docs.tree \
81
82
83
84 1.1 dev-dotnet/taglib-sharp/files/taglib-sharp-fix-docs-test.patch
85
86 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-fix-docs-test.patch?rev=1.1&view=markup
87 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-fix-docs-test.patch?rev=1.1&content-type=text/plain
88
89 Index: taglib-sharp-fix-docs-test.patch
90 ===================================================================
91 --- configure.ac 2007-11-26 01:40:33.788848353 +0530
92 +++ configure.ac.new 2007-11-26 01:40:11.706847727 +0530
93 @@ -61,7 +61,7 @@
94 GACUTIL_POLICY_FLAGS='/gacdir $(libdir) /root $(DESTDIR)$(libdir)'
95 AC_SUBST(GACUTIL_POLICY_FLAGS)
96
97 -AC_ARG_ENABLE(docs, AC_HELP_STRING([--disable-docs], [Do not build documentation]), with_docs=no, with_docs=yes)
98 +AC_ARG_ENABLE(docs, AC_HELP_STRING([--disable-docs], [Do not build documentation]), with_docs=$enableval, with_docs=yes)
99
100 dnl Monodoc
101 if test "x$with_docs" = "xyes"; then
102
103
104
105 1.1 dev-dotnet/taglib-sharp/files/taglib-sharp-fix-sandbox-violation.patch
106
107 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-fix-sandbox-violation.patch?rev=1.1&view=markup
108 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/taglib-sharp-fix-sandbox-violation.patch?rev=1.1&content-type=text/plain
109
110 Index: taglib-sharp-fix-sandbox-violation.patch
111 ===================================================================
112 diff -Naur taglib-sharp-2.0.2.0/docs/Makefile.am taglib-sharp-2.0.2.0.new/docs/Makefile.am
113 --- taglib-sharp-2.0.2.0/docs/Makefile.am 2007-06-11 09:35:31.000000000 +0530
114 +++ taglib-sharp-2.0.2.0.new/docs/Makefile.am 2007-11-26 02:37:20.023389485 +0530
115 @@ -33,12 +33,6 @@
116
117 taglib-sharp-docs.zip taglib-sharp-docs.tree: $(srcdir)/en/*/*.xml $(srcdir)/en/*.xml
118 $(DOC_ASSEMBLER) $(srcdir)/en
119 -
120 -install-data-hook:
121 - $(MONO) $(top_builddir)/docs/MonodocNodeConfig.exe --insert "TagLib#" classlib-taglib-sharp $(DOCDIR)/../monodoc.xml
122 -
123 -uninstall-hook:
124 - $(MONO) $(top_builddir)/docs/MonodocNodeConfig.exe --remove classlib-taglib-sharp $(DOCDIR)/../monodoc.xml
125 endif
126
127 EXTRA_DIST = \
128 diff -Naur taglib-sharp-2.0.2.0/docs/Makefile.in taglib-sharp-2.0.2.0.new/docs/Makefile.in
129 --- taglib-sharp-2.0.2.0/docs/Makefile.in 2007-07-04 03:42:06.000000000 +0530
130 +++ taglib-sharp-2.0.2.0.new/docs/Makefile.in 2007-11-26 02:37:45.355848954 +0530
131 @@ -386,12 +386,6 @@
132
133 @BUILD_DOCS_TRUE@×××××××××××××××××.zip taglib-sharp-docs.tree: $(srcdir)/en/*/*.xml $(srcdir)/en/*.xml
134 @BUILD_DOCS_TRUE@ $(DOC_ASSEMBLER) $(srcdir)/en
135 -
136 -@BUILD_DOCS_TRUE@install-data-hook:
137 -@BUILD_DOCS_TRUE@ $(MONO) $(top_builddir)/docs/MonodocNodeConfig.exe --insert "TagLib#" classlib-taglib-sharp $(DOCDIR)/../monodoc.xml
138 -
139 -@BUILD_DOCS_TRUE@uninstall-hook:
140 -@BUILD_DOCS_TRUE@ $(MONO) $(top_builddir)/docs/MonodocNodeConfig.exe --remove classlib-taglib-sharp $(DOCDIR)/../monodoc.xml
141 # Tell versions [3.59,3.63) of GNU make to not export all variables.
142 # Otherwise a system limit (for SysV at least) may be exceeded.
143 .NOEXPORT:
144
145
146
147 1.1 dev-dotnet/taglib-sharp/files/digest-taglib-sharp-2.0.2.0
148
149 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/digest-taglib-sharp-2.0.2.0?rev=1.1&view=markup
150 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/taglib-sharp/files/digest-taglib-sharp-2.0.2.0?rev=1.1&content-type=text/plain
151
152 Index: digest-taglib-sharp-2.0.2.0
153 ===================================================================
154 MD5 3db8f773a7fc85b9ba3c169affdc0c8a taglib-sharp-2.0.2.0.tar.gz 312044
155 RMD160 d474c189d7904dfc7d3593f331951e72aab7e58c taglib-sharp-2.0.2.0.tar.gz 312044
156 SHA256 00f3f233f7614cf1ae6366ce5d54d3c9088906d704c95e64a2adbf41e8f92b43 taglib-sharp-2.0.2.0.tar.gz 312044
157
158
159
160 --
161 gentoo-commits@g.o mailing list