rev 10287 - in branches/kde4/packages: . automoc automoc/debian

Sune Vuorela pusling-guest at alioth.debian.org
Sat Apr 26 22:15:05 UTC 2008


Author: pusling-guest
Date: 2008-04-26 22:15:04 +0000 (Sat, 26 Apr 2008)
New Revision: 10287

Added:
   branches/kde4/packages/automoc/
   branches/kde4/packages/automoc/debian/
   branches/kde4/packages/automoc/debian/changelog
   branches/kde4/packages/automoc/debian/compat
   branches/kde4/packages/automoc/debian/control
   branches/kde4/packages/automoc/debian/copyright
   branches/kde4/packages/automoc/debian/rules
Log:
initial automoc packaging

Added: branches/kde4/packages/automoc/debian/changelog
===================================================================
--- branches/kde4/packages/automoc/debian/changelog	                        (rev 0)
+++ branches/kde4/packages/automoc/debian/changelog	2008-04-26 22:15:04 UTC (rev 10287)
@@ -0,0 +1,7 @@
+automoc (0.0.0.1-1) unstable; urgency=low
+
+  * Automoc split from kdelibs to be used in kdesupport.
+    Based on r801285
+
+ -- Sune Vuorela <debian at pusling.com>  Sat, 26 Apr 2008 23:21:42 +0200
+

Added: branches/kde4/packages/automoc/debian/compat
===================================================================
--- branches/kde4/packages/automoc/debian/compat	                        (rev 0)
+++ branches/kde4/packages/automoc/debian/compat	2008-04-26 22:15:04 UTC (rev 10287)
@@ -0,0 +1 @@
+5

Added: branches/kde4/packages/automoc/debian/control
===================================================================
--- branches/kde4/packages/automoc/debian/control	                        (rev 0)
+++ branches/kde4/packages/automoc/debian/control	2008-04-26 22:15:04 UTC (rev 10287)
@@ -0,0 +1,16 @@
+Source: automoc
+Section: devel
+Priority: extra
+Maintainer: Sune Vuorela <debian at pusling.com>
+Build-Depends: debhelper (>= 5), libqt4-dev, cmake
+Standards-Version: 3.7.3
+
+Package: automoc
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, libqt4-dev
+Description: automatic moc for Qt4 packages
+ this package contains the automoc4 binary which is used to run moc on the right 
+ binaries in a qt4 or kde4 application.
+ .
+ Moc is the meta object compiler which is a much used tool when using the Qt 
+ toolkit.

Added: branches/kde4/packages/automoc/debian/copyright
===================================================================
--- branches/kde4/packages/automoc/debian/copyright	                        (rev 0)
+++ branches/kde4/packages/automoc/debian/copyright	2008-04-26 22:15:04 UTC (rev 10287)
@@ -0,0 +1,35 @@
+This package was debianized by Sune Vuorela <debian at pusling.com> on
+Sat, 26 Apr 2008 23:21:42 +0200.
+
+It was downloaded from <svn://anonsvn.kde.org>
+
+Upstream Authors: 
+
+	Mathias Kretz <kretz at kde.org>
+	Alexander Neundorff <neundorff at kde.org>
+
+Copyright: 
+
+	Copyright (c) 2007 Mathias Kretz <kretz at kde.org>
+
+License:
+
+    This package is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+ 
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+ 
+    You should have received a copy of the GNU General Public License
+    along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2008, Sune Vuorela <debian at pusling.com> and
+is licensed under the GPL, see above.

Added: branches/kde4/packages/automoc/debian/rules
===================================================================
--- branches/kde4/packages/automoc/debian/rules	                        (rev 0)
+++ branches/kde4/packages/automoc/debian/rules	2008-04-26 22:15:04 UTC (rev 10287)
@@ -0,0 +1,72 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+builddir/CMakeCache.txt:
+	dh_testdir
+	mkdir -p builddir
+	cd builddir && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS="$(CFLAGS)" -DCMAKE_CXX_FLAGS="$(CFLAGS)" \
+				-DCMAKE_SHARED_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
+				-DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
+				-DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed"
+
+build: build-stamp
+
+build-stamp: builddir/CMakeCache.txt
+	dh_testdir
+
+	# Add here commands to compile the package.
+	cd builddir && $(MAKE)
+	#docbook-to-man debian/automoc.sgml > automoc.1
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	rm -rf builddir
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/automoc.
+	cd builddir && $(MAKE) DESTDIR=$(CURDIR)/debian/automoc install
+
+
+# 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 
+	dh_installdocs
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: branches/kde4/packages/automoc/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the pkg-kde-commits mailing list