[Pkg-mono-svn-commits] rev 882 - in winelib/trunk: . debian

Eduard Bloch blade@haydn.debian.org
Mon, 31 May 2004 03:51:04 -0600


Author: blade
Date: 2004-05-31 03:51:01 -0600 (Mon, 31 May 2004)
New Revision: 882

Added:
   winelib/trunk/debian/
   winelib/trunk/debian/changelog
   winelib/trunk/debian/compat
   winelib/trunk/debian/control
   winelib/trunk/debian/copyright
   winelib/trunk/debian/dirs
   winelib/trunk/debian/rules
Log:
Adding debian/ contents


Added: winelib/trunk/debian/changelog
===================================================================
--- winelib/trunk/debian/changelog	2004-05-31 01:43:23 UTC (rev 881)
+++ winelib/trunk/debian/changelog	2004-05-31 09:51:01 UTC (rev 882)
@@ -0,0 +1,6 @@
+winelib (0.2-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Eduard Bloch <blade@debian.org>  Mon, 31 May 2004 01:06:08 +0200
+

Added: winelib/trunk/debian/compat
===================================================================
--- winelib/trunk/debian/compat	2004-05-31 01:43:23 UTC (rev 881)
+++ winelib/trunk/debian/compat	2004-05-31 09:51:01 UTC (rev 882)
@@ -0,0 +1 @@
+4

Added: winelib/trunk/debian/control
===================================================================
--- winelib/trunk/debian/control	2004-05-31 01:43:23 UTC (rev 881)
+++ winelib/trunk/debian/control	2004-05-31 09:51:01 UTC (rev 882)
@@ -0,0 +1,15 @@
+Source: winelib
+Section: libs
+Priority: optional
+Maintainer: Debian Mono Group <pkg-mono-group@lists.alioth.debian.org>
+Uploaders: Eduard Bloch <blade@debian.org>
+Build-Depends: debhelper (>= 4.0.0), libwine-dev, file, libfontconfig1-dev
+Standards-Version: 3.6.0
+
+Package: libwine-cil
+Architecture: i386
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: WINE bindings for Mono
+ This package contains a library required to implement core
+ functionality of the Mono assembly Systems.Windows.Forms using the WINE
+ libraries.

Added: winelib/trunk/debian/copyright
===================================================================
--- winelib/trunk/debian/copyright	2004-05-31 01:43:23 UTC (rev 881)
+++ winelib/trunk/debian/copyright	2004-05-31 09:51:01 UTC (rev 882)
@@ -0,0 +1,18 @@
+This package was debianized by Eduard Bloch <blade@debian.org> on
+Mon, 31 May 2004 01:06:08 +0200.
+
+It was downloaded from http://www.go-mono.org/download.html
+
+Upstream Author: Alexandre Julliard
+
+Copyright:
+
+ * Copyright 2004 Novell, Inc. (http://www.novell.com/)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+
+You can find a complete copy of LGPL in the file
+/usr/share/common-licenses/LGPL on Debian systems.

Added: winelib/trunk/debian/dirs
===================================================================
--- winelib/trunk/debian/dirs	2004-05-31 01:43:23 UTC (rev 881)
+++ winelib/trunk/debian/dirs	2004-05-31 09:51:01 UTC (rev 882)
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin

Added: winelib/trunk/debian/rules
===================================================================
--- winelib/trunk/debian/rules	2004-05-31 01:43:23 UTC (rev 881)
+++ winelib/trunk/debian/rules	2004-05-31 09:51:01 UTC (rev 882)
@@ -0,0 +1,109 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	INSTALL_PROGRAM += -s
+endif
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#/usr/bin/docbook-to-man debian/winelib.sgml > winelib.1
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) distclean
+#ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+#	cp -f /usr/share/misc/config.sub config.sub
+#endif
+#ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+#	cp -f /usr/share/misc/config.guess config.guess
+#endif
+
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs /usr/share/dotnet/mono/gac/System.Windows.Forms/* /usr/lib/
+	cp winelib/winelib.exe.so debian/libwine-cil/usr/lib/
+
+	# Add here commands to install the package into debian/winelib.
+	#$(MAKE) install prefix=$(CURDIR)/debian/winelib/usr
+	
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+#	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+#	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 


Property changes on: winelib/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *