Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
Add first bunch of debian/ stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio M. Di Nitto committed Oct 14, 2005
1 parent 2754d94 commit 441a528
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 0 deletions.
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
live-f1 (0+20051014) dapper; urgency=low

* First packaging.

-- Fabio M. Di Nitto <fabbione@ubuntu.com> Fri, 14 Oct 2005 11:23:50 +0200
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4
18 changes: 18 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Source: live-f1
Section: misc
Priority: optional
Maintainer: Fabio M. Di Nitto <fabbione@ubuntu.com>
Standards-Version: 3.6.2
Build-Depends: debhelper (>= 4.2.28), libncurses5-dev, libneon24-dev, libssl-dev, libxml2-dev, zlib1g-dev

Package: live-f1
Section: misc
Priority: optional
Architecture: any
Depends: ${shlibs:Depends}
Description: formula1.com text based client
This tiny client is capable of grab and display the real time stream
from formula1.com without the need of a java-enabled browser.
.
NOTE: this software requires an account on formula1.com and it is still
experimental.
22 changes: 22 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
This is the Ubuntu / Debian GNU/Linux prepackaged version of live-f1.

Author: Scott James Remnant <scott@netsplit.com>

Packaged by Fabio M. Di Nitto <fabbione@ubuntu.com>

This program 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; version 2 dated June, 1991.

This program 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 program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.

On Ubuntu / Debian GNU/Linux systems, the complete text of the GNU
General Public License can be found in `/usr/share/common-licenses/GPL'.
81 changes: 81 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1

configure: configure-stamp
configure-stamp:
dh_testdir

if [ ! -x configure ]; then \
if [ ! -x /usr/bin/autoreconf ]; then \
echo "Hey dude.. gimme a break.. you need to autoreconf the source!"; \
exit 1; \
else \
echo "Dude.. you should do this stuff before release.."; \
autoreconf --install --force --verbose; \
touch OMG-AUTORECONF; \
fi \
fi

./configure --prefix=/usr

touch $@

build: configure build-stamp
build-stamp:
dh_testdir

$(MAKE)

touch $@

install: build
dh_testdir
dh_testroot
dh_clean -k

$(MAKE) install DESTDIR=`pwd`/debian/live-f1/

dh_installdocs README ChangeLog AUTHORS
dh_installchangelogs


binary-arch: install
dh_testdir
dh_testroot
dh_strip -a
dh_compress -a
dh_fixperms -a
dh_installdeb -a
dh_shlibdeps -a
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a

binary-indep: install
#nothing to do

binary: binary-arch binary-indep

clean:
dh_testdir
dh_testroot
dh_clean

rm -rf *-stamp
-$(MAKE) clean
if [ -f OMG-AUTORECONF ]; then \
make distclean || true; \
rm -rf autom4te.cache config.{guess,rpath,status,sub} \
install-sh configure depcomp missing mkinstalldirs \
ABOUT-NLS aclocal.m4 config.h.in \
INSTALL Makefile.in OMG-AUTORECONF \
intl src/Makefile.in \
m4/{xsize,wint_t,wchar_t,ulonglong,uintmax_t,stdint_h,size_max,signed}.m4 \
m4/{progtest,printf-posix,po,nls,longlong,longdouble,lib-prefix,lib-link}.m4 \
m4/{lib-ld,lcmessage,isc-posix,inttypes_h,inttypes,inttypes-pri,intmax}.m4 \
m4/{intdiv0,iconv,glibc21,glibc2,gettext,codeset}.m4 \
po/{stamp-po,remove-potcdate.sin,quot.sed,live-f1.pot,insert-header.sin} \
po/{en@quot.header,en@boldquot.header,boldquot.sed,Rules-quot,Makevars.template,Makefile.in.in}; \
fi

0 comments on commit 441a528

Please sign in to comment.