[Pkg-xfce-commits] r1884 - in goodies: . xfce4-cellmodem-plugin xfce4-cellmodem-plugin/debian

sargentd-guest at alioth.debian.org sargentd-guest at alioth.debian.org
Tue Apr 22 15:24:08 UTC 2008


Author: sargentd-guest
Date: 2008-04-22 15:24:07 +0000 (Tue, 22 Apr 2008)
New Revision: 1884

Added:
   goodies/xfce4-cellmodem-plugin/
   goodies/xfce4-cellmodem-plugin/debian/
   goodies/xfce4-cellmodem-plugin/debian/changelog
   goodies/xfce4-cellmodem-plugin/debian/compat
   goodies/xfce4-cellmodem-plugin/debian/control
   goodies/xfce4-cellmodem-plugin/debian/copyright
   goodies/xfce4-cellmodem-plugin/debian/rules
   goodies/xfce4-cellmodem-plugin/debian/watch
Log:
import xfce4-cellmodem-plugin 0.0.5



Property changes on: goodies/xfce4-cellmodem-plugin/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: goodies/xfce4-cellmodem-plugin/debian/changelog
===================================================================
--- goodies/xfce4-cellmodem-plugin/debian/changelog	                        (rev 0)
+++ goodies/xfce4-cellmodem-plugin/debian/changelog	2008-04-22 15:24:07 UTC (rev 1884)
@@ -0,0 +1,6 @@
+xfce4-cellmodem-plugin (0.0.5-1) unstable; urgency=low
+
+  * Initial release                                             closes: #477329
+
+ -- Evgeni Golov <sargentd at die-welt.net>  Mon, 21 Apr 2008 23:23:34 +0200
+

Added: goodies/xfce4-cellmodem-plugin/debian/compat
===================================================================
--- goodies/xfce4-cellmodem-plugin/debian/compat	                        (rev 0)
+++ goodies/xfce4-cellmodem-plugin/debian/compat	2008-04-22 15:24:07 UTC (rev 1884)
@@ -0,0 +1 @@
+5

Added: goodies/xfce4-cellmodem-plugin/debian/control
===================================================================
--- goodies/xfce4-cellmodem-plugin/debian/control	                        (rev 0)
+++ goodies/xfce4-cellmodem-plugin/debian/control	2008-04-22 15:24:07 UTC (rev 1884)
@@ -0,0 +1,25 @@
+Source: xfce4-cellmodem-plugin
+Section: utils
+Priority: optional
+Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
+Uploaders: Evgeni Golov <sargentd at die-welt.net>
+Build-Depends: debhelper (>= 5), autotools-dev, libusb-dev, libxml-parser-perl, pciutils-dev, pkg-config, xfce4-panel-dev
+Standards-Version: 3.7.3
+Homepage: http://goodies.xfce.org/projects/panel-plugins/xfce4-cellmodem-plugin
+
+Package: xfce4-cellmodem-plugin
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: cellular modem plugin for the Xfce4 panel
+ The cellmodem plugin is a monitoring plugin for cellular modems.
+ It reports provider and signal quality for GPRS/UMTS(3G)/HSDPA(3.5G)
+ modem cards. It works with (mostly) all cards which support an
+ out-of-band channel for monitoring purposes.
+ .
+ The current features include:
+  * Display the current network type (GPRS/UMTS)
+  * Display the current signal level
+  * Configure the maximum signal level
+  * Configure the low and critical signal level
+  * Asking for PIN if modem needs it
+  * Quick visual feedback on modem and registration status via LEDs

Added: goodies/xfce4-cellmodem-plugin/debian/copyright
===================================================================
--- goodies/xfce4-cellmodem-plugin/debian/copyright	                        (rev 0)
+++ goodies/xfce4-cellmodem-plugin/debian/copyright	2008-04-22 15:24:07 UTC (rev 1884)
@@ -0,0 +1,12 @@
+This package was downloaded from <http://goodies.xfce.org/releases/xfce4-cellmodem-plugin/>
+
+Files: *
+Copyright: © 2006-2007 Alvaro Lopes <alvieboy at alvie.com>
+License: GPL-2+
+
+Files: debian/*
+Copyright: © 2008 Evgeni Golov <sargentd at die-welt.net>
+License: GPL-any
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.

Added: goodies/xfce4-cellmodem-plugin/debian/rules
===================================================================
--- goodies/xfce4-cellmodem-plugin/debian/rules	                        (rev 0)
+++ goodies/xfce4-cellmodem-plugin/debian/rules	2008-04-22 15:24:07 UTC (rev 1884)
@@ -0,0 +1,83 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# 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)
+
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+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
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
+	--prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info \
+	--libexecdir=\$${prefix}/lib \
+	CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/xfce4-cellmodem-plugin.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/xfce4-cellmodem-plugin 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 ChangeLog
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	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 


Property changes on: goodies/xfce4-cellmodem-plugin/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: goodies/xfce4-cellmodem-plugin/debian/watch
===================================================================
--- goodies/xfce4-cellmodem-plugin/debian/watch	                        (rev 0)
+++ goodies/xfce4-cellmodem-plugin/debian/watch	2008-04-22 15:24:07 UTC (rev 1884)
@@ -0,0 +1,3 @@
+version=3
+http://goodies.xfce.org/releases/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-(.*)\.tar\.gz
+




More information about the Pkg-xfce-commits mailing list