[Pkg-cli-apps-commits] r4426 - in /packages/nant/trunk/debian: changelog rules
meebey at users.alioth.debian.org
meebey at users.alioth.debian.org
Sun Jan 18 19:49:34 UTC 2009
Author: meebey
Date: Sun Jan 18 19:49:34 2009
New Revision: 4426
URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=4426
Log:
- finalized changelog
- removed unneeded .wapi handling
Modified:
packages/nant/trunk/debian/changelog
packages/nant/trunk/debian/rules
Modified: packages/nant/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/nant/trunk/debian/changelog?rev=4426&op=diff
==============================================================================
--- packages/nant/trunk/debian/changelog (original)
+++ packages/nant/trunk/debian/changelog Sun Jan 18 19:49:34 2009
@@ -1,6 +1,5 @@
-nant (0.85.dfsg1-6) UNRELEASED; urgency=low
-
- * Packaged from scratch
+nant (0.85.dfsg1-6) experimental; urgency=low
+
* debian/control:
+ removed 1.0 Build-Dependencies
+ using mono-devel instead of mono-gmcs in runtime Depends
@@ -8,7 +7,8 @@
+ added ${misc:Depends} to nant
* debian/patches/:
+ 000-fix_build_system.dpatch added
- * debian/rules switched to dh7-style
+ * debian/rules:
+ + Rewritten and switched to dh7-style
* debian/compat bumped to 7
* debian/watch updated to version 3
Modified: packages/nant/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/nant/trunk/debian/rules?rev=4426&op=diff
==============================================================================
--- packages/nant/trunk/debian/rules (original)
+++ packages/nant/trunk/debian/rules Sun Jan 18 19:49:34 2009
@@ -1,26 +1,22 @@
#!/usr/bin/make -f
-# -*- makefile -*-
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-export MONO_SHARED_DIR=$(CURDIR)
+export DH_VERBOSE=1
include /usr/share/dpatch/dpatch.make
include /usr/share/cli-common/cli.make
+MAKE_FLAGS = MONO=/usr/bin/cli MCS=/usr/bin/csc
+
build: build-stamp
build-stamp: $(DPATCH_STAMPFN)
- mkdir -p $(MONO_SHARED_DIR)/.wapi
dh build --before dh_auto_build
- $(MAKE) MONO=cli MCS=csc prefix=/usr DESTDIR=$(CURDIR)/debian/tmp
+ $(MAKE) $(MAKE_FLAGS)
dh build --after dh_auto_build
touch $@
install: install-stamp
install-stamp: build
dh install --before dh_auto_install
- $(MAKE) MONO=cli MCS=csc prefix=/usr DESTDIR=$(CURDIR)/debian/tmp install
+ $(MAKE) $(MAKE_FLAGS) prefix=/usr DESTDIR=$(CURDIR)/debian/tmp install
dh install --after dh_auto_install
rmdir --ignore-fail-on-non-empty --parents debian/nant
touch $@
@@ -30,6 +26,7 @@
dh clean
binary-arch:
+
binary-indep: build
dh binary-indep
More information about the Pkg-cli-apps-commits
mailing list