--- gsmc-1.1.orig/Makefile.in +++ gsmc-1.1/Makefile.in @@ -88,7 +88,7 @@ am_gsmc_OBJECTS = autotune.$(OBJEXT) calc.$(OBJEXT) dataconv.$(OBJEXT) \ draw.$(OBJEXT) main.$(OBJEXT) print.$(OBJEXT) widget.$(OBJEXT) gsmc_OBJECTS = $(am_gsmc_OBJECTS) -gsmc_LDADD = $(LDADD) +gsmc_LDADD = $(LDADD) -lm gsmc_DEPENDENCIES = gsmc_LDFLAGS = --- gsmc-1.1.orig/debian/changelog +++ gsmc-1.1/debian/changelog @@ -0,0 +1,25 @@ +gsmc (1.1-1.3) unstable; urgency=medium + + * Non-maintainer upload. + * Switch to automake1.11. (Closes: #724384) + + -- Eric Dorland Sat, 08 Mar 2014 02:19:18 -0500 + +gsmc (1.1-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Makefile.in - Add -lm to gsmc_LDADD. (Closes: #713460). + + -- Barry deFreese Thu, 11 Jul 2013 09:02:48 -0400 + +gsmc (1.1-1.1) unstable; urgency=low + + * Retiring - remove myself from the uploaders list. + + -- Joop Stakenborg Sat, 14 Nov 2009 14:11:37 +0000 + +gsmc (1.1-1) unstable; urgency=low + + * First upload. (closes: #208486) + + -- Hamish Moffatt Fri, 19 Oct 2007 00:25:52 +1000 --- gsmc-1.1.orig/debian/compat +++ gsmc-1.1/debian/compat @@ -0,0 +1 @@ +4 --- gsmc-1.1.orig/debian/control +++ gsmc-1.1/debian/control @@ -0,0 +1,15 @@ +Source: gsmc +Section: hamradio +Priority: optional +Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 4), libgtk2.0-dev, libglib2.0-dev, automake1.11 +Maintainer: Debian Hamradio Maintainers +Homepage: http://www.qsl.net/ik5nax/index.html +Uploaders: Jaime Robles , Patrick Ouellette , Hamish Moffatt + +Package: gsmc +Architecture: any +Depends: ${shlibs:Depends} +Description: Smith Chart calculator for impedance matching + gsmc allows you to perform Smith Chart calculations for + RF (radio frequency) circuit design. --- gsmc-1.1.orig/debian/copyright +++ gsmc-1.1/debian/copyright @@ -0,0 +1,13 @@ + +gsmc was written by: + Lapo Pieri IK5NAX, ik5nax@amsat.org. + Johannes van der Horst, jvdhorst@cs.sun.ac.za +Copyright 2003-2004. + +It is licensed under the terms of the GNU General Public License. +See /usr/share/common-licenses/GPL for details. + +The original sources were obtained from: http://www.qsl.net/ik5nax/ + +This package was created by Hamish Moffatt . + --- gsmc-1.1.orig/debian/gsmc.desktop +++ gsmc-1.1/debian/gsmc.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=GTK Smith Chart Calculator +Comment=RF Impedance calculator +Exec=gsmc +Icon=mini-gsmc.xpm +Terminal=false +Type=Application +Categories=HamRadio; --- gsmc-1.1.orig/debian/gsmc.dirs +++ gsmc-1.1/debian/gsmc.dirs @@ -0,0 +1,4 @@ +usr/bin +usr/share/man/man1 +usr/share/pixmaps +usr/share/applications --- gsmc-1.1.orig/debian/gsmc.menu +++ gsmc-1.1/debian/gsmc.menu @@ -0,0 +1,5 @@ +?package(gsmc):needs="X11" section="Applications/Amateur Radio" \ + title="gsmc" longtitle="Smith Chart Calculator" \ + description="Smith Chart calculator" \ + command="/usr/bin/gsmc" \ + icon="/usr/share/pixmaps/mini-gsmc.xpm" --- gsmc-1.1.orig/debian/mini-gsmc.xpm +++ gsmc-1.1/debian/mini-gsmc.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char * mini-mix_xpm[] = { +"16 16 4 1", +" c None s None", +". c black", +"r c red", +"y c green", +" .... ", +" .. r .. ", +" . r . ", +" . r . ", +" . r ... . ", +" . .ryyy.. ", +". .yryyy..", +". .yyyrryy.", +".............rrr", +". .yyyrryy.", +" . .yryyy. ", +" . ryyy.. ", +" . r .... ", +" . r . ", +" .. r .. ", +" .... "}; --- gsmc-1.1.orig/debian/rules +++ gsmc-1.1/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f + +AUTOMAKE_FILES = install-sh missing mkinstalldirs + +build: + dh_testdir + for f in $(AUTOMAKE_FILES); do cp /usr/share/automake-1.11/$$f .; done + ./configure --prefix=/usr --mandir=/usr/share/man + $(MAKE) + touch build + +clean: + dh_testdir + -rm -f build + [ ! -f Makefile ] || $(MAKE) distclean + for f in $(AUTOMAKE_FILES); do rm -f $$f; done + rm -f config.log + dh_clean + +binary-indep: build +# nothing else to do + +binary-arch: build + dh_testroot + dh_clean + dh_installdirs + dh_installman + dh_installdocs README TODO AUTHORS + $(MAKE) install DESTDIR=`pwd`/debian/gsmc + + dh_install debian/mini-gsmc.xpm usr/share/pixmaps + dh_install debian/gsmc.desktop usr/share/applications + dh_installmenu + dh_installchangelogs NEWS + dh_desktop + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_makeshlibs + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +.PHONY: binary binary-arch binary-indep clean