[Pkg-wmaker-commits] [wmfrog] 14/145: Imported Debian patch 0.1.6-1

Doug Torrance dtorrance-guest at moszumanska.debian.org
Sun Aug 23 05:46:13 UTC 2015


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmfrog.

commit 1defc3f5b9ee6ba67a9f17970f21c0a4904215a8
Author: Jari Aalto <jari.aalto at cante.net>
Date:   Sat Feb 11 15:16:55 2006 +0200

    Imported Debian patch 0.1.6-1
---
 debian/changelog |  6 ++++
 debian/compat    |  1 +
 debian/control   | 19 +++++++++++
 debian/copyright | 27 ++++++++++++++++
 debian/debian.mk | 59 ++++++++++++++++++++++++++++++++++
 debian/dirs      |  2 ++
 debian/rules     | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 212 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1c603da
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+wmfrog (0.1.6-1) unstable; urgency=low
+
+  * Initial release Closes: #352353
+
+ -- Jari Aalto <jari.aalto at cante.net>  Sat, 11 Feb 2006 15:16:55 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b97a75e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: wmfrog
+Section: x11
+Priority: optional
+Maintainer: Jari Aalto <jari.aalto at cante.net>
+Build-Depends: debhelper (>= 4.0.0), libxpm-dev
+Standards-Version: 3.6.2
+
+Package: wmfrog
+Architecture: any
+Depends: wget, ${shlibs:Depends}, ${misc:Depends}
+Description: A dockapp for showing weather in graphical way
+ A dockapp for wheather reports. Includes clouds (clear, few,
+ scattered, broken, overcast ...); Precipitations (drizzle, rain,
+ snow, ice christals: light/moderate or heavy); Special weather
+ (Blowing wind / Freezing / Thunderstorm, funnel cloud...); Humidity
+ perentage; Wind speed (average & gust); Wind Direction; Temperature
+ (Celcius or Fareinheit); Station name can be configured and weather
+ report time is displayed.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ba42872
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+This package was debianized by Jari Aalto <jari.aalto at cante.net> on
+Sat, 11 Feb 2006 15:16:55 +0200.
+
+It was downloaded from http://www.colar.net/wmapps/
+See also http://dockapps.org/file.php/id/92
+
+Copyright Holder: <tcolar at qarbon.com>
+
+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'.
+
diff --git a/debian/debian.mk b/debian/debian.mk
new file mode 100644
index 0000000..15a65de
--- /dev/null
+++ b/debian/debian.mk
@@ -0,0 +1,59 @@
+# This is Makefile for Debian maintainer tasks
+# Can be included from $TOPLEVEL/Makefile
+
+doit: all
+
+dput-local:
+	file=$$(ls -1t .. | egrep '$(PACKAGE).*changes' | head -1); \
+	dput --force localhost ../$$file
+
+deb-ls:
+	ls -1t .. | egrep '$(PACKAGE)' | head 
+
+svn-build:
+	svn-buildpackage -us -uc -rfakeroot
+
+svn-pbuilder: 
+	CC=gcc CXX=g++ svn-buildpackage \
+	--svn-builder="pdebuild --buildresult $(pwd)/../build-area
+
+pbuilder:
+	mkdir -p /tmp/
+	dsc=$$(cd ..; ls ../*.dsc | sort -r | head -1 ); \
+	echo [NOTE] pbuilding with: $$dsc; \
+	CC=gcc CXX=g++ pdebuild --buildresult /tmp/pdebuild \
+		--buildsourceroot fakeroot \
+		$$dsc \
+		-- -uc -us
+
+deb:
+	debuild --lintian --linda -rfakeroot \
+		-uc -us \
+		-i'(\.svn|\.bzr|\.hg|CVS|RCS)'
+
+deb-bin:
+	debuild --lintian --linda -rfakeroot \
+		-uc -us \
+		-sa -b -i'(\.svn|\.bzr|\.hg|CVS|RCS)'
+
+deb-src:
+	debuild --lintian --linda -rfakeroot \
+		-uc -us \
+		-sa -S -i'(\.svn|\.bzr|\.hg|CVS|RCS)'
+
+deb-bin-sig:
+	debuild --lintian --linda -rfakeroot \
+		-tc -pgpg -sgpg -k$(GPGKEY) \
+		-sa -b -i'(\.svn|\.bzr|\.hg|CVS|RCS)'
+
+deb-src-sig:
+	debuild --lintian --linda -rfakeroot \
+		-tc -pgpg -sgpg -k$(GPGKEY) \
+		-sa -S -i'(\.svn|\.bzr|\.hg|CVS|RCS)'
+
+#  Get new upstream version if it exists
+dl-upstream:
+	(cd ..; mywebget.pl --new --verbose \
+	http://..../xarchiver-1.1.tar.bz2 )
+
+# End of file
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..ca882bb
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..fb32fd3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,98 @@
+#!/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
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE) -C Src
+	#docbook-to-man debian/wmfrog.sgml > wmfrog.1
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) -C Src clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/wmfrog.
+	$(MAKE) -C Src install DESTDIR=$(CURDIR)/debian/wmfrog
+
+
+# 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 CHANGES
+	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 Src/wmfrog.1
+	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 configure

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmfrog.git



More information about the Pkg-wmaker-commits mailing list