public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/gmetadom/files: gmetadom-0.2.6-gentoo.patch
@ 2008-01-18  0:32 Matsuu Takuto (matsuu)
  0 siblings, 0 replies; 2+ messages in thread
From: Matsuu Takuto (matsuu) @ 2008-01-18  0:32 UTC (permalink / raw
  To: gentoo-commits

matsuu      08/01/18 00:32:36

  Modified:             gmetadom-0.2.6-gentoo.patch
  Log:
  Fxied to work with ocaml USE flag. #204819
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.2                  dev-libs/gmetadom/files/gmetadom-0.2.6-gentoo.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gmetadom/files/gmetadom-0.2.6-gentoo.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gmetadom/files/gmetadom-0.2.6-gentoo.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gmetadom/files/gmetadom-0.2.6-gentoo.patch?r1=1.1&r2=1.2

Index: gmetadom-0.2.6-gentoo.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/gmetadom/files/gmetadom-0.2.6-gentoo.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gmetadom-0.2.6-gentoo.patch	17 Jan 2008 15:08:30 -0000	1.1
+++ gmetadom-0.2.6-gentoo.patch	18 Jan 2008 00:32:36 -0000	1.2
@@ -12,16 +12,102 @@
  		OCAML_CFLAGS=-I$OCAML_LIB
 diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/Makefile.am gmetadom-0.2.6/src/gdome_caml/Makefile.am
 --- gmetadom-0.2.6.orig/src/gdome_caml/Makefile.am	2006-08-06 17:33:36.000000000 +0900
-+++ gmetadom-0.2.6/src/gdome_caml/Makefile.am	2008-01-17 23:42:15.000000000 +0900
-@@ -83,7 +83,7 @@
++++ gmetadom-0.2.6/src/gdome_caml/Makefile.am	2008-01-18 08:48:01.000000000 +0900
+@@ -4,7 +4,7 @@
+ ARCHIVE = mlgdome
+ PKGNAME = gdome2
+ OCAMLBUILDDIR = $(top_builddir)/src/gdome_caml
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/$(PKGNAME)
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/$(PKGNAME)
+ STUBSDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/stublibs
+ OCAMLFLAGS = \
+   -I $(OCAMLBUILDDIR)/types \
+@@ -82,8 +82,8 @@
+ 	done
  	if [ "x$(OCAMLFIND)" != "x" ]; then \
  		mv $(OCAMLINSTALLDIR) $(OCAMLINSTALLDIR).saved &&	\
- 		$(mkinstalldirs) $(DESTDIR)$(OCAML_LIB_PREFIX)/ && \
+-		$(mkinstalldirs) $(DESTDIR)$(OCAML_LIB_PREFIX)/ && \
 -		$(OCAMLFIND) install -destdir $(DESTDIR)$(OCAML_LIB_PREFIX)/ $(PKGNAME) META $(DLL) && \
-+		$(OCAMLFIND) install -destdir $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages $(PKGNAME) META $(DLL) && \
++		$(mkinstalldirs) $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/ && \
++		$(OCAMLFIND) install -ldconf ignore -destdir $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/ $(PKGNAME) META $(DLL) && \
  		$(INSTALL_DATA) $(OCAMLINSTALLDIR).saved/* $(OCAMLINSTALLDIR)/ &&	\
  		rm -rf $(OCAMLINSTALLDIR).saved/;	\
  	else	\
+@@ -92,7 +92,7 @@
+ 
+ uninstall-local:
+ 	if [ "x$(OCAMLFIND)" != "x" ]; then	\
+-	  $(OCAMLFIND) remove -destdir $(DESTDIR)$(OCAML_LIB_PREFIX)/ $(PKGNAME);	\
++	  $(OCAMLFIND) remove -destdir $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/ $(PKGNAME);	\
+ 	else	\
+ 		rm -rf $(OCAMLINSTALLDIR);	\
+ 		rm $(STUBSDIR)/$(DLL);	\
+diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/basic/Makefile.am gmetadom-0.2.6/src/gdome_caml/basic/Makefile.am
+--- gmetadom-0.2.6.orig/src/gdome_caml/basic/Makefile.am	2003-09-13 23:14:42.000000000 +0900
++++ gmetadom-0.2.6/src/gdome_caml/basic/Makefile.am	2008-01-18 08:57:33.000000000 +0900
+@@ -1,6 +1,6 @@
+ 
+ OCAMLBUILDDIR = $(top_builddir)/src/gdome_caml
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/gdome2
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/gdome2
+ OCAMLFLAGS = -I $(OCAMLBUILDDIR) -I $(OCAMLBUILDDIR)/core \
+              -I $(OCAMLBUILDDIR)/types
+ OCAMLC = @OCAMLC@ ${OCAMLFLAGS}
+diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/core/Makefile.am gmetadom-0.2.6/src/gdome_caml/core/Makefile.am
+--- gmetadom-0.2.6.orig/src/gdome_caml/core/Makefile.am	2007-10-12 23:12:51.000000000 +0900
++++ gmetadom-0.2.6/src/gdome_caml/core/Makefile.am	2008-01-18 08:57:33.000000000 +0900
+@@ -1,6 +1,6 @@
+ 
+ OCAMLBUILDDIR = $(top_builddir)/src/gdome_caml
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/gdome2
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/gdome2
+ OCAMLFLAGS = -I $(OCAMLBUILDDIR)/types -I $(OCAMLBUILDDIR)/basic
+ OCAMLC = @OCAMLC@ ${OCAMLFLAGS}
+ OCAMLOPT = @OCAMLOPT@ ${OCAMLFLAGS}
+diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/events/Makefile.am gmetadom-0.2.6/src/gdome_caml/events/Makefile.am
+--- gmetadom-0.2.6.orig/src/gdome_caml/events/Makefile.am	2007-10-12 23:12:51.000000000 +0900
++++ gmetadom-0.2.6/src/gdome_caml/events/Makefile.am	2008-01-18 08:57:33.000000000 +0900
+@@ -1,6 +1,6 @@
+ 
+ OCAMLBUILDDIR = $(top_builddir)/src/gdome_caml
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/gdome2
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/gdome2
+ OCAMLFLAGS = -I $(OCAMLBUILDDIR)/types -I $(OCAMLBUILDDIR)/basic
+ OCAMLC = @OCAMLC@ ${OCAMLFLAGS}
+ OCAMLOPT = @OCAMLOPT@ ${OCAMLFLAGS}
+diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/include/Makefile.am gmetadom-0.2.6/src/gdome_caml/include/Makefile.am
+--- gmetadom-0.2.6.orig/src/gdome_caml/include/Makefile.am	2002-08-31 03:03:36.000000000 +0900
++++ gmetadom-0.2.6/src/gdome_caml/include/Makefile.am	2008-01-18 08:57:33.000000000 +0900
+@@ -1,5 +1,5 @@
+ 
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/gdome2
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/gdome2
+ EXTRA_DIST = mlgdomevalue.h
+ 
+ install-data-local: mlgdomevalue.h
+diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/ocaml/Makefile.am gmetadom-0.2.6/src/gdome_caml/ocaml/Makefile.am
+--- gmetadom-0.2.6.orig/src/gdome_caml/ocaml/Makefile.am	2007-10-12 23:12:51.000000000 +0900
++++ gmetadom-0.2.6/src/gdome_caml/ocaml/Makefile.am	2008-01-18 08:57:33.000000000 +0900
+@@ -1,6 +1,6 @@
+ 
+ OCAMLBUILDDIR = $(top_builddir)/src/gdome_caml
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/gdome2
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/gdome2
+ 
+ OCAMLFLAGS = \
+   -I $(OCAMLBUILDDIR) \
+diff -Naur gmetadom-0.2.6.orig/src/gdome_caml/types/Makefile.am gmetadom-0.2.6/src/gdome_caml/types/Makefile.am
+--- gmetadom-0.2.6.orig/src/gdome_caml/types/Makefile.am	2007-10-12 23:12:51.000000000 +0900
++++ gmetadom-0.2.6/src/gdome_caml/types/Makefile.am	2008-01-18 08:57:33.000000000 +0900
+@@ -1,7 +1,7 @@
+ 
+ OCAMLC = @OCAMLC@
+ OCAMLDEP = @OCAMLDEP@
+-OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/gdome2
++OCAMLINSTALLDIR = $(DESTDIR)$(OCAML_LIB_PREFIX)/site-packages/gdome2
+ 
+ T_AUTO_MLI = \
+   tNode.mli \
 diff -Naur gmetadom-0.2.6.orig/src/gdome_cpp_smart/test/Makefile.am gmetadom-0.2.6/src/gdome_cpp_smart/test/Makefile.am
 --- gmetadom-0.2.6.orig/src/gdome_cpp_smart/test/Makefile.am	2007-05-09 00:26:18.000000000 +0900
 +++ gmetadom-0.2.6/src/gdome_cpp_smart/test/Makefile.am	2008-01-17 23:41:17.000000000 +0900



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-libs/gmetadom/files: gmetadom-0.2.6-gentoo.patch
@ 2013-07-09 16:49 Michael Palimaka (kensington)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Palimaka (kensington) @ 2013-07-09 16:49 UTC (permalink / raw
  To: gentoo-commits

kensington    13/07/09 16:49:55

  Removed:              gmetadom-0.2.6-gentoo.patch
  Log:
  Remove old.
  
  (Portage version: 2.1.12.12/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-07-09 23:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-18  0:32 [gentoo-commits] gentoo-x86 commit in dev-libs/gmetadom/files: gmetadom-0.2.6-gentoo.patch Matsuu Takuto (matsuu)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-09 16:49 Michael Palimaka (kensington)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox