debian/0000755000000000000000000000000012164467355007203 5ustar debian/rules0000755000000000000000000000536712164464674010277 0ustar #!/usr/bin/make -f # -*- makefile -*- # debian/rules file for the Debian/GNU Linux pcb package # Copyright 1997-99 by Hartmut Koptein package = pcb CONFIGURE_OPTS=--disable-rpath --enable-dbus --disable-update-desktop-database --disable-update-mime-database --enable-dependency-tracking --enable-coord64 LDFLAGS="$(LDFLAGS) -Wl,--as-needed" %: dh $@ override_dh_auto_configure: dh_auto_configure --builddirectory build_gtk -- $(CONFIGURE_OPTS) --with-gui=gtk dh_auto_configure --builddirectory build_lesstif -- $(CONFIGURE_OPTS) --with-gui=lesstif override_dh_auto_build: dh_auto_build --builddirectory build_gtk dh_auto_build --builddirectory build_lesstif override_dh_auto_test: dh_auto_test --builddirectory build_gtk dh_auto_test --builddirectory build_lesstif override_dh_auto_install: dh_auto_install --builddirectory build_gtk override_dh_auto_clean: dh_auto_clean --builddirectory build_gtk dh_auto_clean --builddirectory build_lesstif override_dh_install: # Remove needlessly installed static library and header file before # installing common files: rm -rf $(CURDIR)/debian/tmp/usr/lib rm -rf $(CURDIR)/debian/tmp/usr/include dh_install -Xusr/bin -Xusr/share/pcb- -Xusr/share/doc -Xexamples -Xtutorial -Xusr/share/info # Install pcb-gtk binary: install build_gtk/src/pcb debian/$(package)-gtk/usr/bin/pcb-gtk # Install pcb-lesstif binary: install build_lesstif/src/pcb debian/$(package)-lesstif/usr/bin/pcb-lesstif # Set executable bit for pcb tools: [ ! -d debian/$(package)-common ] || chmod a+x debian/$(package)-common/usr/share/pcb/tools/MergePCBPS [ ! -d debian/$(package)-common ] || chmod a+x debian/$(package)-common/usr/share/pcb/tools/Merge_dimPCBPS [ ! -d debian/$(package)-common ] || chmod a+x debian/$(package)-common/usr/share/pcb/tools/tgo2pcb.tcl [ ! -d debian/$(package)-common ] || chmod a+x debian/$(package)-common/usr/share/pcb/tools/PCB2HPGL # Remove empty dirs: [ ! -d debian/$(package)-common ] || find debian/$(package)-common -type d -empty -delete override_dh_fixperms: dh_fixperms # Fix permissions of a couple of example files: [ ! -d debian/$(package)-common ] || chmod -x debian/$(package)-common/usr/share/doc/$(package)-common/examples/LED.pcb [ ! -d debian/$(package)-common ] || chmod -x debian/$(package)-common/usr/share/doc/$(package)-common/examples/LED.net override_dh_installexamples: dh_installexamples -XMakefile override_dh_installchangelogs: dh_installchangelogs -p$(package)-common override_dh_installdocs: # Only install docs in $(package)-common & link other packages' docs to # $(package)-common: dh_installdocs --link-doc=$(package)-common override_dh_compress: # exclude example files from compression dh_compress -X.pcb -XLED debian/source.lintian-overrides0000644000000000000000000000026612164464674014070 0ustar # Added a patch to use updated config.{sub,guess} pcb source: outdated-autotools-helper-file config.sub 2005-07-08 pcb source: outdated-autotools-helper-file config.guess 2005-07-08 debian/pcb-common.install0000644000000000000000000000005012164464674012621 0ustar usr/ debian/pcb.xpm usr/share/pixmaps/ debian/pcb-gtk.links0000644000000000000000000000007412164464674011576 0ustar usr/share/man/man1/pcb.1.gz usr/share/man/man1/pcb-gtk.1.gz debian/pcb-gtk.prerm0000644000000000000000000000043212164464674011601 0ustar #! /bin/sh set -e case "$1" in remove) update-alternatives --quiet --remove pcb /usr/bin/pcb-gtk ;; upgrade|failed-upgrade|deconfigure) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 0 ;; esac #DEBHELPER# exit 0 debian/pcb-lesstif.menu0000644000000000000000000000045612164464674012312 0ustar ?package(pcb-lesstif):needs="x11" section="Applications/Science/Electronics" \ title="PCB (LessTif interface)" \ longtitle="Printed Circuit Board Design Program" \ hotkey="P" icon="/usr/share/pixmaps/pcb.xpm" \ command="/usr/bin/pcb-lesstif" debian/pcb-common.lintian-overrides0000644000000000000000000000026412164464674014620 0ustar # /usr/bin/pcb is an alternative installed by postinst script of either pcb-gtk # or pcb-lesstiff pcb-common: desktop-command-not-in-package usr/share/applications/pcb.desktop pcb debian/pcb-common.doc-base0000644000000000000000000000100412164464674012630 0ustar Document: pcb Title: Pcb Manual Author: harry eaton Abstract: This document is a manual for Pcb, the interactive printed circuit board layout system for X11. Section: Science/Electronics Format: HTML Index: /usr/share/doc/pcb-common/pcb.html Files: /usr/share/doc/pcb-common/pcb.html Format: Info Index: /usr/share/info/pcb.info.gz Files: /usr/share/info/pcb.info* Format: PDF Files: /usr/share/doc/pcb-common/pcb.pdf.gz Format: DVI Files: /usr/share/doc/pcb-common/refcard.pdf.gz debian/patches/0000755000000000000000000000000012164464674010633 5ustar debian/patches/outdated_config.diff0000644000000000000000000000150012164464674014617 0ustar Description: Patch config.{sub,guess} to call their up-to-date versions. Author: أحمد المحمودي (Ahmed El-Mahmoudy) --- a/config.guess +++ b/config.guess @@ -1,4 +1,8 @@ #! /bin/sh +if [ -x /usr/share/misc/config.guess ]; then + exec /usr/share/misc/config.guess "$@" +fi + # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. --- a/config.sub +++ b/config.sub @@ -1,4 +1,8 @@ #! /bin/sh +if [ -x /usr/share/misc/config.sub ]; then + exec /usr/share/misc/config.sub "$@" +fi + # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. debian/patches/0001-Fixed-command-line-batch-output-for-some-exporters.patch0000644000000000000000000000107012164464674024023 0ustar Description: Fixed command line batch output for some exporters Author: Vladimir Zhbanov Origin: http://git.geda-project.org/pcb/commit/?id=63068cafd8da99b442c87aa084944faaacf81cfc Bug: https://bugs.launchpad.net/pcb/+bug/905968 Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pcb/+bug/988503 --- a/src/main.c +++ b/src/main.c @@ -1931,6 +1931,8 @@ if (gui->printer || gui->exporter) { + // Workaround to fix batch output for non-C locales + setlocale(LC_NUMERIC,"C"); gui->do_export (0); exit (0); } debian/patches/fix_pan_action.diff0000644000000000000000000000231712164464674014451 0ustar Description: Fix Pan action to stop after button release outside window master Previously, we required in-view coordinates to stop and start the pan-action, and when the button was released outside the viewport, the code was querying the user to click at a particular location. Since the pan action doesn't even use the passed in coordinates, simply remove the requirement for the x-y coordinates from this action. Origin: http://git.gpleda.org/?p=pcb.git;a=commit;h=ed9a9d0cd9d054e6fc4a075ec1b8d9a12f1cb376 Author: Peter Clifton [Mon, 19 Sep 2011 10:16:49 +0000 (11:16 +0100)] Bug: https://launchpad.net/bugs/699307 Bug-Debian: http://bugs.debian.org/562641 --- a/src/hid/gtk/gtkhid-main.c +++ b/src/hid/gtk/gtkhid-main.c @@ -2030,7 +2030,7 @@ {"LayerGroupsChanged", 0, LayerGroupsChanged}, {"LibraryChanged", 0, LibraryChanged}, {"Load", 0, Load}, - {"Pan", N_("Click on a place to pan"), PanAction, pan_help, pan_syntax}, + {"Pan", 0, PanAction, pan_help, pan_syntax}, {"PCBChanged", 0, PCBChanged}, {"PointCursor", 0, PointCursor}, {"Popup", 0, Popup, popup_help, popup_syntax}, --- /dev/null +++ b/po/POTFILES.skip @@ -0,0 +1 @@ +.pc/fix_pan_action.diff/src/hid/gtk/gtkhid-main.c debian/patches/disable_hid_png3_test.diff0000644000000000000000000000121612164464674015702 0ustar Description: Disable hid_png3 test According to upstream, the problem is in the hid_png3 test Author: أحمد المحمودي (Ahmed El-Mahmoudy) Forwarded: not-needed Bug: https://bugs.launchpad.net/bugs/860037 Bug-Debian: http://bugs.debian.org/642923 --- a/tests/tests.list +++ b/tests/tests.list @@ -161,6 +161,6 @@ # hid_png1 | gerber_oneline.pcb | png | | | png:gerber_oneline.png hid_png2 | gerber_oneline.pcb | png | --outfile myfile.png | | png:myfile.png -hid_png3 | gerber_oneline.pcb | png | --dpi 300 | | png:gerber_oneline.png +#hid_png3 | gerber_oneline.pcb | png | --dpi 300 | | png:gerber_oneline.png # debian/patches/fix_CPPFLAGS.diff0000644000000000000000000000163212164464674013534 0ustar Description: Append input CPPFLAGS for lesstif target Author: أحمد المحمودي (Ahmed El-Mahmoudy) Bug: https://bugs.launchpad.net/pcb/+bug/1003355 Forwarded: https://bugs.launchpad.net/pcb/+bug/1003355/+attachment/3159260/+files/fix_CPPFLAGS.diff --- a/configure +++ b/configure @@ -15260,7 +15260,7 @@ fi - CPPFLAGS="$CFLAGS $X_CFLAGS" + CPPFLAGS="$CPPFLAGS $CFLAGS $X_CFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XOpenDisplay in -lX11" >&5 $as_echo_n "checking for XOpenDisplay in -lX11... " >&6; } if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then : --- a/configure.ac +++ b/configure.ac @@ -710,7 +710,7 @@ case $e in lesstif ) AC_PATH_XTRA - CPPFLAGS="$CFLAGS $X_CFLAGS" + CPPFLAGS="$CPPFLAGS $CFLAGS $X_CFLAGS" AC_CHECK_LIB(X11, XOpenDisplay, , , $X_LIBS) AC_CHECK_LIB(ICE, main, , , $X_LIBS) AC_CHECK_LIB(SM, main, , , $X_LIBS) debian/patches/default_GtkFileChooser_cwd.diff0000644000000000000000000000300212164464674016671 0ustar Description: Set default path in GTK file choosers to cwd Author: أحمد المحمودي (Ahmed El-Mahmoudy) Bug: https://bugs.launchpad.net/pcb/+bug/855621 Bug-Debian: http://bugs.debian.org/642060 Forwarded: https://bugs.launchpad.net/pcb/+bug/855621/+attachment/2436146/+files/default_GtkFileChooser_cwd.diff --- a/src/hid/gtk/gtkhid-main.c +++ b/src/hid/gtk/gtkhid-main.c @@ -11,6 +11,7 @@ #endif #include #include +#include #include "action.h" @@ -1230,6 +1231,13 @@ static gchar *current_layout_dir = NULL; static gchar *current_netlist_dir = NULL; + if(!current_element_dir) + current_element_dir = get_current_dir_name(); + if(!current_layout_dir) + current_layout_dir = get_current_dir_name(); + if(!current_netlist_dir) + current_netlist_dir = get_current_dir_name(); + /* we've been given the file name */ if (argc > 1) return hid_actionv ("LoadFrom", argc, argv); @@ -1303,6 +1311,9 @@ static gchar *current_dir = NULL; + if(!current_dir) + current_dir = get_current_dir_name(); + if (argc > 1) return hid_actionv ("SaveTo", argc, argv); @@ -1986,6 +1997,9 @@ static int I_am_recursing = 0; int rv; + if(!current_layout_dir) + current_layout_dir = get_current_dir_name(); + if (I_am_recursing) return 1; --- a/po/POTFILES.skip +++ b/po/POTFILES.skip @@ -1 +1,2 @@ .pc/fix_pan_action.diff/src/hid/gtk/gtkhid-main.c +.pc/default_GtkFileChooser_cwd.diff/src/hid/gtk/gtkhid-main.c debian/patches/pcbtest_paths.diff0000644000000000000000000000166212164464674014335 0ustar Description: lib/pcblib-newlib is in TOPSRCDIR not in TOP_BUILDDIR Author: أحمد المحمودي (Ahmed El-Mahmoudy) Bug: https://bugs.launchpad.net/pcb/+bug/855405 Forwarded: https://bugs.launchpad.net/pcb/+bug/855405/+attachment/2435173/+files/pcbtest_paths.diff --- a/src/pcbtest.sh.in +++ b/src/pcbtest.sh.in @@ -37,7 +37,7 @@ # Use --g-fatal-warnings with the gtk HID to cause gtk-WARNING's to # abort. -TEST_PATHS="--lib-path @TOP_BUILDDIR@/lib --lib-newlib @TOPSRCDIR@/newlib:@TOP_BUILDDIR@/lib/pcblib-newlib --element-path @TOP_BUILDDIR@/lib --font-path @TOPSRCDIR@/src" +TEST_PATHS="--lib-path @TOP_BUILDDIR@/lib --lib-newlib @TOPSRCDIR@/newlib:@TOPSRCDIR@/lib/pcblib-newlib --element-path @TOP_BUILDDIR@/lib --font-path @TOPSRCDIR@/src" TEST_CMDS="--lib-command-dir @TOP_BUILDDIR@/lib" # note: To do command line exporting, pcb requires the "-x " command to appear first. For example debian/patches/drop_check_global_included.patch0000644000000000000000000000175112164464674017150 0ustar Description: Drop the #if check for the declaration of hid_get_extents() Author: Michael Bienia Bug: https://bugs.launchpad.net/pcb/+bug/1002964 Forwarded: https://bugs.launchpad.net/pcb/+bug/1002964/+attachment/3158021/+files/drop_check_global_included.patch Index: pcb-20110918/src/hid/hidint.h =================================================================== --- pcb-20110918.orig/src/hid/hidint.h 2011-05-20 06:36:57.000000000 +0200 +++ pcb-20110918/src/hid/hidint.h 2012-05-20 16:03:09.000000000 +0200 @@ -64,12 +64,8 @@ /* Returns a filename base that can be used to output the layer. */ const char *layer_type_to_file_name (int idx, int style); -#ifdef __GLOBAL_INCLUDED__ - /* Convenience function that calls the expose callback for the item, and returns the extents of what was drawn. */ BoxType *hid_get_extents (void *item); -#endif - void derive_default_filename(const char *pcbfile, HID_Attribute *filename_attrib, const char *suffix, char **memory); debian/patches/fix_typo.diff0000644000000000000000000000075112164464674013331 0ustar Description: Fix typo (recieved -> received) Author: أحمد المحمودي (Ahmed El-Mahmoudy) Bug: https://bugs.launchpad.net/pcb/+bug/855398 Forwarded: https://bugs.launchpad.net/pcb/+bug/855398/+attachment/2435156/+files/fix_typo.diff --- a/src/hid/common/hidgl.c +++ b/src/hid/common/hidgl.c @@ -521,7 +521,7 @@ } } else - printf ("Vertex recieved with unknown type\n"); + printf ("Vertex received with unknown type\n"); } void debian/patches/series0000644000000000000000000000036612164464674012055 0ustar fix_typo.diff outdated_config.diff fix_pan_action.diff pcbtest_paths.diff default_GtkFileChooser_cwd.diff disable_hid_png3_test.diff 0001-Fixed-command-line-batch-output-for-some-exporters.patch drop_check_global_included.patch fix_CPPFLAGS.diff debian/control0000644000000000000000000000627212164464674010616 0ustar Source: pcb Section: electronics Priority: optional Maintainer: Debian Electronics Team Uploaders: Hamish Moffatt , Wesley J. Landaker , Ramakrishnan Muthukrishnan , أحمد المحمودي (Ahmed El-Mahmoudy) Build-Depends: debhelper (>= 9), bison, flex, libgtkglext1-dev, tk8.5, libgd-dev, libdbus-1-dev, libmotif-dev, libxmu-dev, libxml-parser-perl, intltool, imagemagick, gerbv Standards-Version: 3.9.4 Homepage: http://pcb.gpleda.org/ Vcs-Git: git://anonscm.debian.org/pkg-electronics/pcb.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-electronics/pcb.git Package: pcb Architecture: all Depends: ${misc:Depends}, pcb-gtk | pcb-lesstif, pcb-common Description: printed circuit board (pcb) design program - meta-package PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time. Package: pcb-common Architecture: all Replaces: pcb Depends: ${misc:Depends}, m4, tk8.5 | wish, tcl8.5 | tclsh, pcb-gtk | pcb-lesstif Recommends: extra-xdg-menus Description: printed circuit board (pcb) design program - common files PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time. . This package contains the common files. Package: pcb-gtk Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, pcb-common Description: printed circuit board (pcb) design program - GTK+ interface PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time. . This package contains the GTK+ user-interface for pcb. Package: pcb-lesstif Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, pcb-common Description: printed circuit board (pcb) design program - LessTif interface PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time. . This package contains the LessTif user-interface for pcb. debian/compat0000644000000000000000000000000212164464674010402 0ustar 9 debian/source/0000755000000000000000000000000012164464674010504 5ustar debian/source/format0000644000000000000000000000001412164464674011712 0ustar 3.0 (quilt) debian/pcb-gtk.postinst0000644000000000000000000000047012164464674012341 0ustar #! /bin/sh set -e case "$1" in configure) update-alternatives --quiet --install /usr/bin/pcb pcb /usr/bin/pcb-gtk 20 ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac #DEBHELPER# exit 0 debian/pcb-gtk.dirs0000644000000000000000000000001012164464674011405 0ustar usr/bin debian/pcb-common.dirs0000644000000000000000000000003112164464674012113 0ustar usr/share/doc/pcb-common debian/changelog0000644000000000000000000003433312164464674011064 0ustar pcb (20110918-9) unstable; urgency=low * Build-Dep on libmotif-dev instead of lesstif2-dev (Closes: #714681) -- أحمد المحمودي (Ahmed El-Mahmoudy) Tue, 02 Jul 2013 07:43:29 +0200 pcb (20110918-8) unstable; urgency=low * debian/control: + Drop libgd2-xpm-dev from Build-Deps + Bumped Standards-Version to 3.9.4 + Update Build-Depends from libgd2-dev to libgd-dev + Use canonical URIs in VCS-* fields. + Remove obsolete DMUA field. * debian/copyright: Updated copyright years. * debian/*.menu: Use absolute path for icon in menu files. * debian/pcb-{gtk,lesstif}.lintian-overrides: Removed unused overrides for menu-icon-missing -- أحمد المحمودي (Ahmed El-Mahmoudy) Fri, 28 Jun 2013 00:48:31 +0200 pcb (20110918-7) unstable; urgency=low * Force 64-bit coordinate types (even on 32-bit archs) Thanks to Keith Packard (Closes: #683980) -- أحمد المحمودي (Ahmed El-Mahmoudy) Mon, 06 Aug 2012 11:11:20 +0200 pcb (20110918-6) unstable; urgency=low * Imported patch from Ubuntu and forwarded it upstream: debian/patches/drop_check_global_included.patch: Drop the #if check for the declaration of hid_get_extents(). * Added fix_CPPFLAGS.diff patch to Append input CPPFLAGS for lesstif target -- أحمد المحمودي (Ahmed El-Mahmoudy) Wed, 23 May 2012 13:14:33 +0200 pcb (20110918-5) unstable; urgency=low * Added 0001-Fixed-command-line-batch-output-for-some-exporters.patch from upstream git to fix command line batch output for some exporters. Thanks to Traumflug (LP: #988503) * Bumped compat level to 9 * debian/control: Updated Standards-Version to 3.9.3 * debian/copyright: Updated copyright format & years. -- أحمد المحمودي (Ahmed El-Mahmoudy) Tue, 08 May 2012 21:30:17 +0200 pcb (20110918-4) unstable; urgency=low * Close 644139 in previous changelog entry * Added disable_hid_png3_test.diff to disable hid_png3 test (Closes: #642923) -- أحمد المحمودي (Ahmed El-Mahmoudy) Tue, 20 Dec 2011 20:45:37 +0200 pcb (20110918-3) unstable; urgency=low * debian/rules: Remove needlessly installed header file. (Closes: #644139) -- أحمد المحمودي (Ahmed El-Mahmoudy) Mon, 03 Oct 2011 21:40:56 +0200 pcb (20110918-2) unstable; urgency=low * Added default_GtkFileChooser_cwd.diff patch to default the GTK file chooser dialogs to cwd (Closes: #642060) * debian/control: Remove ${shlib:Depends} from pcb-common's dependencies. -- أحمد المحمودي (Ahmed El-Mahmoudy) Wed, 21 Sep 2011 17:12:08 +0200 pcb (20110918-1) unstable; urgency=low * New upstream release. * debian/watch: Added URL for gEDA website * debian/control: + Bumped Standards-Version to 3.9.2 + Replaced Build-Dep on libgtk2.0-dev & libglib2.0-dev with libgtkglext1-dev * Bumped compat level 8 * debian/copyright: + Updated copyright years + Updated copyright format * debian/rules: + Remove needlessly installed static library before installing common files + Added override for dh_auto_test to run tests in build dirs * Added fix_typo.diff patch to fix a typo * Added fix_pan_action.diff patch to fix pan action to stop after button release outside window master (Closes: #562641) * debian/pcb-{gtk,lesstiff}.lintian-overrides: Added overrides for false spelling-error tags * Added imagemagick & gerbv to Build-Deps to enable test suite * Added pcbtest_paths.diff patch to fix path for lib/pcblib-newlib -- أحمد المحمودي (Ahmed El-Mahmoudy) Wed, 21 Sep 2011 12:21:08 +0200 pcb (20100929-2) unstable; urgency=low * Install PDF version of refcard instead of the DVI, as the PDF got fixed. -- أحمد المحمودي (Ahmed El-Mahmoudy) Mon, 08 Nov 2010 07:33:30 +0200 pcb (20100929-1) unstable; urgency=low * New upstream release (Closes: #602150) * debian/control: + Updated my email address + Added DMUA after sponsors consent (http://lists.alioth.debian.org/pipermail/pkg-electronics-devel/2010-April/001827.html) + Added intltool to Build-Deps + Bumped Standards-Version to 3.9.1, no changes needed. * Removed desktop.diff & manpage.diff patches, as they got applied upstream. Credit to chrysn . * LED and LED.NET are now named LED.pcb and LED.net. Credit to chrysn . -- أحمد المحمودي (Ahmed El-Mahmoudy) Tue, 02 Nov 2010 09:33:10 +0200 pcb (20091103-2) unstable; urgency=low * Modified desktop.diff patch: do not add Education;Science categories * debian/rules: check wether pcb-common is built before operating on it, this is a workaround for builders that only build binary-arch (Closes: #556298). Thanks to Maia Kozheva . -- أحمد المحمودي (Ahmed El-Mahmoudy) Thu, 19 Nov 2009 10:30:13 +0200 pcb (20091103-1) unstable; urgency=low * New upstream release. (Closes: #520909, #294278) * Switch to source format 3.0 (quilt). * debian/control: + Bumped Standards-Version to 3.8.3, no changes needed. + Build-Depend on debhelper (>= 7.4.3~). + Update version of tcl/tk dependencies to 8.5 + Add ${misc:Depends} to binary packages' dependencies. + Added Homepage field. + Added myself to uploaders. + Added to extended description of pcb-common. + Added Vcs-* fields. * debian/compat: Bumped compat level to 7 * debian/rules: + Simplified rules file. + Do not install Merge* in /usr/bin since they already get installed in /usr/share/pcb/tools + Install DVI version of refcard since the PDF version is messed up. + Add --enable-dependency-tracking option to CONFIGURE_OPTS to make out-of-source building work. + Add -Wl,--as-needed to LDFLAGS. * Added pcb-common.docs, pcb-gtk.links, pcb-lesstif.links, debian/pcb-common.examples, debian/pcb-common.install, debian/README.source, debian/source.lintian-overrides, debian/pcb-gtk.lintian-overrides, debian/pcb-lesstif.lintian-overrides, debian/pcb-common.info, debian/pcb-common.lintian-overrides, debian/pcb-common.doc-base * Remove debian/pcb.dirs, debian/pcb-common.postinst, debian/pcb-common.prerm, debian/pcb-common.menu * Removed un-necessary entries from debian/*.dirs * Rename: debian/README.debian -> debian/README.Debian * Added patches: + outdated_config.diff to for config.{sub,guess} to call their up-to-date versions. (Closes: #538882) + desktop.diff to fix the following in the pcb.desktop file: - Remove Encoding field - Add Education;Science as main categories + manpage.diff to fix manpage error. * debian/copyright: Rewrote in machine-readable format. * Regenerated debian/pcb.xpm from upstream provided pcb.svg -- أحمد المحمودي (Ahmed El-Mahmoudy) Thu, 29 Oct 2009 10:11:20 +0200 pcb (20080202-2) unstable; urgency=low * Call dh_installmime in debian/rules to register the MIME types properly * Added Recommends: for extra-xdg-menus, which will add an Electronics menu to your freedesktop environment. -- Hamish Moffatt Wed, 13 Feb 2008 00:47:14 +1100 pcb (20080202-1) unstable; urgency=low * New upstream release -- Hamish Moffatt Tue, 12 Feb 2008 23:30:35 +1100 pcb (20070912-6) unstable; urgency=low * Added build-dependency on libxmu-dev, as pcb will use libXmu if found at configure time. -- Hamish Moffatt Sun, 27 Jan 2008 12:31:13 +1100 pcb (20070912-5) unstable; urgency=low * Added the LessTif user-interface as an option. To this end, the package is now split into: - pcb, a meta-package depending on one of the two UIs, - pcb-common, containing common files, - pcb-gtk, containing only the existing GTK+ user-interface, and - pcb-lesstif, containing only the LessTif user-interface. The two UIs provide /usr/bin/pcb via the alternatives mechanism. At least one of the two must be installed. -- Hamish Moffatt Tue, 01 Jan 2008 13:11:36 +1100 pcb (20070912-4) unstable; urgency=low * Add build-dependency on libdbus-1-dev -- Hamish Moffatt Thu, 18 Oct 2007 23:34:11 +1000 pcb (20070912-3) unstable; urgency=low * Changed the Menu structure to adhere to the new menu policy. -- Ramakrishnan Muthukrishnan Wed, 10 Oct 2007 08:39:08 +0530 pcb (20070912-2) unstable; urgency=low * enabled dbus in the build (closes: #446038) -- Ramakrishnan Muthukrishnan Wed, 10 Oct 2007 08:16:22 +0530 pcb (20070912-1) unstable; urgency=low * New Upstream Release. -- Ramakrishnan Muthukrishnan Tue, 18 Sep 2007 18:56:27 +0530 pcb (20070208p1-1) unstable; urgency=low * New upstream release (closes: #425116) -- Ramakrishnan Muthukrishnan Sun, 08 Jul 2007 19:48:33 +0530 pcb (20060822-1) unstable; urgency=low * New upstream release (closes: #386585, #387219, #387315) * Added watch file * Added desktop file (closes: #367617). Thanks to Vassilis Pandis. * Updated to standards-revision 3.7.2 -- Hamish Moffatt Sun, 17 Sep 2006 09:17:24 +1000 pcb (20050609-1) unstable; urgency=low * New upstream snapshot 20050609 (closes: #343339) * Uses GTK+ rather than raw X11 * Uses standard polarity for solder masks (closes: #337653) * Change build-deps from xlibs-dev to individual libraries -- Hamish Moffatt Sun, 18 Dec 2005 00:13:39 +1100 pcb (1.99j+20050127-2) unstable; urgency=low * Improved package description: (closes: #295405) * Fixed dependency: tk84 -> tk8.4 (closes: #295404) * Updated README.debian (closes: #269578) * Applied patch to src/djopt.c to allow compilation with gcc-4.0 (closes: #294319), thanks to Andreas Jochens for the patch. * Prevent example files from being compressed -- Hamish Moffatt Sun, 20 Feb 2005 13:14:00 +1100 pcb (1.99j+20050127-1) unstable; urgency=low * Upstream snapshot 20050127 * Rewrote packaging for major upstream changes since last upload -- Hamish Moffatt Tue, 8 Feb 2005 23:27:44 +1100 pcb (1.99j-1) unstable; urgency=low * New upstream release (Pre-2.0 version) * New maintainer * Most of the work for this version was done by the previous maintainer Hartmut Koptein. * Fixed menu entries (closes: #179496) * Fixed faulty entry in app-defaults (closes: #172978) * Fixed missing HTML documentation (closes: #127159, #126574) * Fixed most lintian warnings -- Hamish Moffatt Sat, 8 Feb 2003 13:54:47 +1100 pcb (1.7.1-4.2) unstable; urgency=low * NMU * Fix build-depends. Closes: #90603, #92442. * fix src/Imakefile (complexProgramTargetNoMan(pcb)) * Add Depends: m4. Closes: #124335 -- LaMont Jones Thu, 10 Jan 2002 15:26:54 -0700 pcb (1.7.1-4.1) unstable; urgency=low * NMU upload * Removed the automatic address setting in the changelog * fix /usr/X11R6/lib/X11/app-defaults -> /etc/X11/app-defaults (closes: #86283) * fix doc/Imakefile so that it actually builds again. * fix man page building and installation. * added debhelper token to postinst and postrm -- Tollef Fog Heen Sat, 17 Mar 2001 13:59:24 +0100 pcb (1.7.1-4) unstable; urgency=low * fixed usr/doc share sym-link -- Hartmut Koptein Thu, 21 Oct 1999 13:13:23 +0200 pcb (1.7.1-3) unstable; urgency=low * Updated Standards-Version to 3.0.1.1 -- Hartmut Koptein Tue, 7 Sep 1999 00:50:00 +0200 pcb (1.7.1-2) unstable; urgency=low * debian/rules clean bug; Fixes: Bug#38670 -- Hartmut Koptein Tue, 1 Jun 1999 08:13:35 +0200 pcb (1.7.1-1) unstable; urgency=low * new upstream version * changed refcard.tex.raw for using LaTeX2e * varargs/glibc-2.1 changes * New Standards-Version: 2.5.1 * added pcb.xpm icon for the menu (not the best, it's my own creation ;-) -- Hartmut Koptein Fri, 14 May 1999 11:38:00 +0200 pcb (1.7-1) unstable; urgency=low * new upstream version * fixed two va_list bugs and some compiler warnings * changed menu entry Pcb into PCB * fixed lintian report errors * examples/* aren't compressed anymore -- Hartmut Koptein Thu, 29 Apr 1999 19:04:32 +0200 pcb (1.6.3-1) unstable; urgency=low * new upstream version (not released for debian) -- Hartmut Koptein Thu, 20 Aug 1998 22:40:08 +0200 pcb (1.6-2) frozen unstable; urgency=low * added postrm script for update-menus -- Hartmut Koptein Wed, 1 Apr 1998 02:37:38 +0200 pcb (1.6-1) frozen unstable; urgency=low * new upstream version * last version is lost on master -- Hartmut Koptein Sat, 28 Mar 1998 00:54:02 +0100 pcb (1.5.5-1) frozen; urgency=low * new upstream version * added pcb.ps and pcb.html to /usr/doc/pcb * changed menu entry to 'Technical' (menu and info) * changed old menu structure to the new one * New Standards-Version: 2.4.0.0 -- Hartmut Koptein Mon, 16 Mar 1998 21:36:09 +0100 pcb (1.5.3-1) unstable; urgency=low * new upstream version -- Hartmut Koptein Mon, 17 Nov 1997 23:04:34 +0100 pcb (1.4.5-1) unstable; urgency=low * new upstream version -- Hartmut Koptein Wed, 9 Jul 1997 02:21:50 +0200 pcb (1.4.4-1) unstable; urgency=low * new maintainer * new upstream version * compiled for libc6 (Bug#3413, Bug#4676 and Bug#5059) * enlarge discription (Bug#3635) * obsolete Bugs #3872 and #4026 * added menu entry Apps/Electronics/PCB * added examples -- Hartmut Koptein Wed, 9 Jul 1997 02:21:50 +0200 pcb (1.4.3-1) unstable; urgency=low * Initial Release. -- Michael Mattice Thu, 21 Nov 1996 23:13:19 -0600 debian/pcb.xpm0000644000000000000000000001632312164464674010503 0ustar /* XPM */ static char * pcb_xpm[] = { "32 32 322 2", " c None", ". c #3B7305", "+ c #3B7403", "@ c #A0C081", "# c #C5DEAD", "$ c #C2D9AC", "% c #C4DDAC", "& c #C9DFB4", "* c #3C7303", "= c #C1D9AB", "- c #4E9A06", "; c #50A005", "> c #57B103", ", c #55AC03", "' c #4E9B06", ") c #54AA04", "! c #4F9B06", "~ c #54A804", "{ c #B9D79C", "] c #4C7E1A", "^ c #D4680C", "/ c #3A7206", "( c #C0D7AB", "_ c #489005", ": c #52A105", "< c #4C9804", "[ c #57B003", "} c #53A803", "| c #55AC04", "1 c #478E05", "2 c #5ABA02", "3 c #59B602", "4 c #A9CA8A", "5 c #5A8A2D", "6 c #DF8128", "7 c #FCC068", "8 c #E99943", "9 c #387103", "0 c #C3DBAC", "a c #5AB902", "b c #5DC101", "c c #5EC201", "d c #56AD04", "e c #54A904", "f c #5BBB02", "g c #59B702", "h c #9FC878", "i c #8E842C", "j c #E08229", "k c #FCBD60", "l c #F6A537", "m c #EDA657", "n c #D06309", "o c #397007", "p c #C3DAAE", "q c #59B901", "r c #5FC500", "s c #5DC100", "t c #4C9904", "u c #59B802", "v c #478F05", "w c #5AB702", "x c #A49F48", "y c #D8842C", "z c #FCBC5F", "A c #EC9D47", "B c #D67420", "C c #40720F", "D c #C0DBA6", "E c #5CBD01", "F c #5FC300", "G c #52A604", "H c #59B502", "I c #509E05", "J c #58B203", "K c #788906", "L c #D9872E", "M c #D67520", "N c #527E25", "O c #B0CE93", "P c #5BBE01", "Q c #4C9A04", "R c #4A9305", "S c #58B303", "T c #4A9604", "U c #56AE03", "V c #738105", "W c #D48427", "X c #FCBC5E", "Y c #EC9D46", "Z c #D77521", "` c #618939", " . c #A6CC82", ".. c #62C10A", "+. c #A5CB80", "@. c #BAD99C", "#. c #B9D49D", "$. c #BCD99E", "%. c #BAD69E", "&. c #BCD89E", "*. c #BBD79E", "=. c #66A727", "-. c #F6A538", ";. c #EC9C46", ">. c #D57521", ",. c #71954E", "'. c #96BF71", "). c #5CC000", "!. c #AEDA83", "~. c #6BAA2F", "{. c #58AD07", "]. c #529F0A", "^. c #56AA08", "/. c #54A30C", "(. c #55A706", "_. c #57A70F", ":. c #61AD1A", "<. c #AFC995", "[. c #D48528", "}. c #D47B2A", "|. c #AA5D04", "1. c #7F9F5F", "2. c #8DBE5F", "3. c #51A205", "4. c #BEDF9E", "5. c #74A844", "6. c #72A93E", "7. c #78AA4A", "8. c #6CA635", "9. c #7FAC54", "0. c #65A42C", "a. c #88AE62", "b. c #66A42B", "c. c #B1CE94", "d. c #CD7921", "e. c #C2A364", "f. c #8CA971", "g. c #7AAD4B", "h. c #53A704", "i. c #5FC400", "j. c #BFDF9F", "k. c #539317", "l. c #559D12", "m. c #55941B", "n. c #549C10", "o. c #549319", "p. c #509A0A", "q. c #57951E", "r. c #67A62C", "s. c #AFA357", "t. c #CD7920", "u. c #7C7A03", "v. c #C1D6AC", "w. c #9CB682", "x. c #73AF3B", "y. c #60C502", "z. c #BDDD9C", "A. c #93972D", "B. c #D98830", "C. c #818204", "D. c #C2D8AD", "E. c #A8C191", "F. c #619E28", "G. c #6BC815", "H. c #AFD789", "I. c #8D8F1F", "J. c #DA8833", "K. c #EC9C45", "L. c #7B7A03", "M. c #4C9506", "N. c #448905", "O. c #C1D7AC", "P. c #375E13", "Q. c #B7CCA2", "R. c #5AA118", "S. c #5BB802", "T. c #7BCD2E", "U. c #9FCF73", "V. c #79A84E", "W. c #7EA953", "X. c #81AB59", "Y. c #DCAA5C", "Z. c #FDF4E6", "`. c #F9BD6E", " + c #CC7821", ".+ c #7B7403", "++ c #448505", "@+ c #468A05", "#+ c #499006", "$+ c #C0D7AA", "%+ c #395E14", "&+ c #C1D5AE", "*+ c #5BBB01", "=+ c #87D043", "-+ c #8FC65C", ";+ c #81B056", ">+ c #82B256", ",+ c #81B154", "'+ c #629E13", ")+ c #E8BC7E", "!+ c #F7E6CD", "~+ c #EFC78E", "{+ c #CF7E28", "]+ c #726503", "^+ c #3D7A05", "/+ c #3A7604", "(+ c #448605", "_+ c #418205", ":+ c #B9D29F", "<+ c #355716", "[+ c #BBD2A5", "}+ c #71C81F", "|+ c #BFD7A7", "1+ c #8AC850", "2+ c #83B653", "3+ c #8AC950", "4+ c #86B956", "5+ c #94CC5F", "6+ c #6F6439", "7+ c #A27D49", "8+ c #E1AA5F", "9+ c #CF9E4A", "0+ c #88791B", "a+ c #3B7405", "b+ c #407F05", "c+ c #458806", "d+ c #488E06", "e+ c #4A9206", "f+ c #ABCD8B", "g+ c #3E5F1F", "h+ c #375919", "i+ c #B3CE98", "j+ c #5DC001", "k+ c #5BBC01", "l+ c #53A703", "m+ c #69B028", "n+ c #88C450", "o+ c #84B852", "p+ c #87C350", "q+ c #7EB54A", "r+ c #80C640", "s+ c #58642D", "t+ c #647A32", "u+ c #468708", "v+ c #418105", "w+ c #458905", "x+ c #4B9506", "y+ c #9BC473", "z+ c #4D6A31", "A+ c #375718", "B+ c #ACCC8E", "C+ c #56AF03", "D+ c #5BB902", "E+ c #55AD03", "F+ c #53A604", "G+ c #4E9906", "H+ c #8CBE5E", "I+ c #58743E", "J+ c #37551B", "K+ c #A4C981", "L+ c #4FA103", "M+ c #4F9F03", "N+ c #499105", "O+ c #499404", "P+ c #7EB549", "Q+ c #5E7944", "R+ c #334E1A", "S+ c #93B770", "T+ c #418005", "U+ c #428105", "V+ c #438107", "W+ c #448309", "X+ c #47830B", "Y+ c #48840E", "Z+ c #4A8610", "`+ c #4C8711", " @ c #4C8813", ".@ c #4D8915", "+@ c #508A17", "@@ c #518A18", "#@ c #528C1A", "$@ c #528D1B", "%@ c #558D1D", "&@ c #558E1F", "*@ c #568E20", "=@ c #578F20", "-@ c #589022", ";@ c #589122", ">@ c #7CA851", ",@ c #627D4A", "'@ c #283C15", ")@ c #A3C087", "!@ c #659535", "~@ c #669637", "{@ c #67963A", "]@ c #6A973C", "^@ c #6A983F", "/@ c #6C9941", "(@ c #6E9A43", "_@ c #6F9A45", ":@ c #6F9B47", "<@ c #719B4A", "[@ c #729B4A", "}@ c #749C4C", "|@ c #749D4E", "1@ c #769D50", "2@ c #779D51", "3@ c #789D52", "4@ c #789E53", "5@ c #789E54", "6@ c #96B37A", "7@ c #5F744A", "8@ c #705914", "9@ c #A07A1E", "0@ c #9E791D", "a@ c #9E791E", "b@ c #9E791F", "c@ c #A0791F", "d@ c #A0781F", "e@ c #A07821", "f@ c #A07721", "g@ c #946A19", " ", " ", " ", " ", " ", " ", " ", " . . . . . . . . . . . . . . . . . . . + ", " @ # $ % $ % $ % $ % $ % $ % $ % $ % $ % & * ", " = - ; > > , - ' ) - ! ) - ~ - - - - - - { ] ^ ", " / ( - _ : < [ } - } | 1 2 1 3 1 - 1 - 1 - 4 5 6 7 8 ", " 9 0 - a b c d > e - f - g - g - - - - - - h i j k l m n ", " o p - q r r s t f 1 g 1 u v w 1 - 1 - 1 - x y z l A B ", " C D - E r r F G w ' w ! H I J - - - - - K L z l A M ", " N O - P r r c Q H R S T > t U 1 - 1 - V W X l Y Z ", " ` .' b r r ..+.@.#.$.%.&.*.{ =.- - K W X -.;.>. ", " ,.'.I ).r r !.~.{.].^./.(._.:.<.- V [.X -.;.}.|. ", " 1.2.3.b r r 4.5.6.7.8.9.0.a.b.c.K [.X -.;.d.e. ", " f.g.h.i.r r j.k.l.m.n.o.p.q.r.s.[.X -.;.t.u.v. ", " w.x.| r r y.z.- - - - - - - A.B.X -.;.t.C.- D. ", " E.F.S r r G.H.1 - 1 - 1 - I.J.X l K.d.L.M.N.O.P. ", " Q.R.S.r r T.U.V.- W.- X.- Y.Z.`.K. +.+++@+#+$+%+ ", " &+1 *+r r =+-+;+- >+- ,+'+)+!+~+{+]+^+/+(+_+:+<+ ", " [+- E r r }+|+1+2+3+4+5+6+7+8+9+0+a+b+c+d+e+f+g+ ", " h+i+1 j+k+j+l+m+n+o+p+q+r+s+t+u+v+e+w+x+N.x+N.y+z+ ", " A+B+- G e e U 3 ! 3.C+- h.D+E+U F+- - G+G+G+- H+I+ ", " J+K+1 h.L+e M+- 1 - N+- 1 3.t 3.O+- 1 - 1 - 1 P+Q+ ", " R+S+T+T+U+V+W+X+Y+Z+`+ @.@+@@@#@$@%@&@*@=@-@;@>@,@ ", " '@)@!@!@!@~@{@]@^@/@(@_@:@<@[@}@|@1@1@2@3@4@5@6@7@ ", " 8@9@0@0@0@0@a@a@a@a@b@c@c@d@c@d@e@e@e@e@e@e@e@f@g@ ", " ", " "}; debian/pcb-lesstif.prerm0000644000000000000000000000043612164464674012471 0ustar #! /bin/sh set -e case "$1" in remove) update-alternatives --quiet --remove pcb /usr/bin/pcb-lesstif ;; upgrade|failed-upgrade|deconfigure) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 0 ;; esac #DEBHELPER# exit 0 debian/pcb-lesstif.links0000644000000000000000000000010012164464674012450 0ustar usr/share/man/man1/pcb.1.gz usr/share/man/man1/pcb-lesstif.1.gz debian/pcb-lesstif.lintian-overrides0000644000000000000000000000015512164464674015000 0ustar # Not a spelling mistake, ang is for angle pcb-lesstif: spelling-error-in-binary usr/bin/pcb-lesstif ang and debian/pcb-gtk.lintian-overrides0000644000000000000000000000014512164464674014113 0ustar # Not a spelling mistake, ang is for angle pcb-gtk: spelling-error-in-binary usr/bin/pcb-gtk ang and debian/pcb-gtk.menu0000644000000000000000000000044312164464674011422 0ustar ?package(pcb-gtk):needs="x11" section="Applications/Science/Electronics" \ title="PCB (GTK+ interface)" \ longtitle="Printed Circuit Board Design Program" \ hotkey="P" icon="/usr/share/pixmaps/pcb.xpm" \ command="/usr/bin/pcb-gtk" debian/pcb-lesstif.postinst0000644000000000000000000000047412164464674013231 0ustar #! /bin/sh set -e case "$1" in configure) update-alternatives --quiet --install /usr/bin/pcb pcb /usr/bin/pcb-lesstif 40 ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac #DEBHELPER# exit 0 debian/pcb-lesstif.dirs0000644000000000000000000000001012164464674012271 0ustar usr/bin debian/copyright0000644000000000000000000000356712164464674011152 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: pcb Upstream-Contact: harry eaton Source: http://pcb.gpleda.org Files: * Copyright: 1994-1997,2010 Thomas Nau 1998-2007,2009 harry eaton 2001 C. Scott Ananian 2003-2008 DJ Delorie 2009-2011 PCB Contributers (See ChangeLog for details) 2009 Anthony Blake 2011 Andrew Poelstra 2010 Alberto Maccioni 2003-2010 Dan McMahill License: GPL-2+ Files: debian/* Copyright: 2003-2008 Hamish Moffatt 1996 Michael Mattice 1997-1999 Hartmut Koptein 2009-2013 أحمد المحمودي (Ahmed El-Mahmoudy) License: GPL-2+ License: GPL-2+ 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; either version 2 of the License, or (at your option) any later version. . 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the complete text of the GNU GPL2 licenses can be found at `/usr/share/common-licenses/GPL-2'. debian/README.source0000644000000000000000000000013612164464674011363 0ustar The used patch system is quilt. See /usr/share/doc/quilt/README.source for more information. debian/README.Debian0000644000000000000000000000064212164464674011247 0ustar PCB for Debian -------------- Documentation for PCB is available in several forms: - Info ('info pcb') - Manual page ('man pcb') - PDF (pcb.pdf and refcard.pdf) - HTML (/usr/share/doc/pcb/html/index.html) Information about PCB is available online at http://pcb.sourceforge.net/ Hamish Moffatt , based on original by Hartmut Koptein , Wed, 9 Jul 1997 02:50:56 +0200 debian/pcb-common.examples0000644000000000000000000000002512164464674012773 0ustar example/* tutorial/* debian/watch0000644000000000000000000000013212164464674010231 0ustar version=3 http://sf.net/pcb/pcb-(.*)\.tar\.gz http://geda.seul.org/dist/pcb-(.*)\.tar\.gz debian/pcb-common.info0000644000000000000000000000001412164464674012106 0ustar doc/*.info* debian/pcb-common.docs0000644000000000000000000000012412164464674012105 0ustar NEWS README_FILES/Whats_new_in_2.0 doc/pcb.pdf doc/refcard.pdf doc/*.png doc/*.html