No changes between revisions
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/changelog
0,0 → 1,10
i2c-tiny-usb (0.2) unstable; urgency=low
 
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
 
-- Till Harbaum <Till@Harbaum.org> Tue, 25 Dec 2007 21:02:30 +0100
 
* First hildonized version
 
-- Till Harbaum <Till@Harbaum.org> Sat, 29 Dec 2007 12:06:43 +0100
 
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/compat
0,0 → 1,0
5
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/control
0,0 → 1,26
Source: i2c-tiny-usb
Section: user/other
Priority: extra
Maintainer: Till Harbaum <Till@Harbaum.org>
Build-Depends: debhelper (>= 5), libgtk2.0-dev, libusb-dev, libhildon1-dev
Standards-Version: 3.7.2
 
Package: i2c-tiny-usb
Architecture: any
Depends: ${shlibs:Depends}, hildon-desktop
Description: User space application for i2c_tiny_usb
This simple test application for the i2c-tiny-usb interface bypasses
the kernel driver being part of the kernel since 2.6.21. The kernel
driver may therefore have to be unloaded before this i2c_usb is being
run. This program currently supports the ds1621 temperature sensor
and the pcf8574 parallel port. See www.harbaum.org/till/i2c_tiny_usb
for details.
XB-Maemo-Icon-26:
iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAF3RFWHRTb2Z0d2Fy
ZQBYUGFpbnQgMi43LjguMT1iBU0AAAD2SURBVEiJvZZLDoQgDIbLZE7nBk5hz9Rb
4MbrdRamhkcp4qB/YhQK/UptAMfMAACAiMfHZBGRAwBwzAyIyMuyPMGBfd+BiJxb
19WEeO+z9rZtt2Bfa4D3vnKs9V3RxzLecdiSY6mGBsBKXWlrCRGP1LUmW2kaSSER
2f+oBIvupNQEjTq0VmkWwygkfZfqpu4faKppK+rpNdAjqdN2k2krEuePV50FmQ6y
1N3rLI3sdd3zaIay8yiEoA6KMWZ2aWt9mg+xVeVdOgohZH0taYGkqkBlVFcgMk4C
0+ZWVRdjPB8N3IO15l5ekRZxarf+D8Cb1623LpA/+pCiKqwn6CcAAAAASUVORK5C
YII=
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/copyright
0,0 → 1,13
This package was debianized by Till Harbaum <Till@Harbaum.org> on
Tue, 25 Dec 2007 21:02:30 +0100.
 
Copyright:
 
<Copyright (C) 2007 Till Harbaum>
 
License:
 
<GPL>
 
The Debian packaging is (C) 2007, Till Harbaum <Till@Harbaum.org> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/dirs
0,0 → 1,7
usr/bin
usr/sbin
etc/udev/rules.d
usr/share/applications/hildon
usr/share/icons/hicolor/26x26/hildon
usr/share/icons/hicolor/40x40/hildon
usr/share/icons/hicolor/scalable/hildon
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/docs
0,0 → 1,2
readme.txt
readme.txt
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/debian/postinst
0,0 → 1,8
#! /bin/sh
 
# The clock might be wrong and we know that we need to update the icon
# cache so we just force it.
 
gtk-update-icon-cache -f /usr/share/icons/hicolor
 
exit 0
Property changes:
Added: svn:executable
+*
\ No newline at end of property
/Designs/Tools/i2c_Tiny_USB/SW/testapp/mobile/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)
#docbook-to-man debian/i2c-tiny-usb.sgml > i2c-tiny-usb.1
 
touch $@
 
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
 
# Add here commands to clean up after the build process.
-$(MAKE) clean
 
dh_clean
 
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
 
# Add here commands to install the package into debian/i2c-tiny-usb.
$(MAKE) DESTDIR=$(CURDIR)/debian/i2c-tiny-usb 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_installexamples
# dh_install
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installpam
# dh_installmime
# dh_python
# dh_installinit
# dh_installcron
# dh_installinfo
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_perl
# 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
Property changes:
Added: svn:executable
+*
\ No newline at end of property