diff options
Diffstat (limited to 'cad')
-rw-r--r-- | cad/kicad-devel/Makefile | 105 | ||||
-rw-r--r-- | cad/kicad-devel/distinfo | 9 | ||||
-rw-r--r-- | cad/kicad-devel/files/patch-libs.FreeBSD | 106 | ||||
-rw-r--r-- | cad/kicad-devel/files/patch-makefile.gtk | 24 | ||||
-rw-r--r-- | cad/kicad-devel/files/patch-pcbnew__class_module.cpp | 11 | ||||
-rw-r--r-- | cad/kicad-devel/pkg-descr | 17 | ||||
-rw-r--r-- | cad/kicad-devel/pkg-message | 7 | ||||
-rw-r--r-- | cad/kicad-devel/pkg-plist | 1383 | ||||
-rw-r--r-- | cad/linux-eagle5/Makefile | 57 | ||||
-rw-r--r-- | cad/linux-eagle5/distinfo | 3 | ||||
-rw-r--r-- | cad/linux-eagle5/files/eagle.sh | 7 | ||||
-rw-r--r-- | cad/linux-eagle5/pkg-descr | 27 | ||||
-rw-r--r-- | cad/linux-eagle5/pkg-message | 6 | ||||
-rw-r--r-- | cad/linux-eagle5/pkg-plist | 732 |
14 files changed, 0 insertions, 2494 deletions
diff --git a/cad/kicad-devel/Makefile b/cad/kicad-devel/Makefile deleted file mode 100644 index dfacb0f3e45a..000000000000 --- a/cad/kicad-devel/Makefile +++ /dev/null @@ -1,105 +0,0 @@ -# New ports collection makefile for: kicad -# Date created: 29 November 2005 -# Whom: Thierry Thomas <thierry@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kicad -DISTVERSION= 2007-01-15 -CATEGORIES= cad -MASTER_SITES= ftp://iut-tice.ujf-grenoble.fr/cao/:dat \ - ftp://ftp.lis.inpg.fr/uploads/kicad/:dat \ - http://iut-tice.ujf-grenoble.fr/cao/:dat \ - ftp://iut-tice.ujf-grenoble.fr/cao/sources/:src \ - ftp://ftp.lis.inpg.fr/uploads/kicad/sources/:src\ - http://iut-tice.ujf-grenoble.fr/cao/sources/:src -DISTFILES= ${PORTNAME}-${DISTVERSION}.tgz:dat \ - ${PORTNAME}-sources-${DISTVERSION}${EXTRACT_SUFX}:src -DIST_SUBDIR= ${PORTNAME} -EXTRACT_ONLY= ${PORTNAME}-sources-${DISTVERSION}${EXTRACT_SUFX} - -MAINTAINER= thierry@FreeBSD.org -COMMENT= Schematic and PCB editing software - -.if !defined(NOPORTDOCS) -DISTFILES+= doc_components-${DOCVERSION}.tgz:dat -DOCVERSION= 2006-12-08 -.endif - -WRKSRC= ${WRKDIR}/kicad-dev -MAKEFILE= makefile.gtk - -USE_ZIP= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GL= yes -USE_WX= 2.6 - -INSTDIR= ${PORTNAME} -PLIST_SUB= INSTDIR=${INSTDIR} OPSYS=${OPSYS} - -DOS2CNV= makefile.gtk makefile.include -BINS= cvpcb eeschema gerbview kicad pcbnew - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/bin/konqueror) -RUN_DEPENDS+= konqueror:${PORTSDIR}/x11/kdebase3 -.else -RUN_DEPENDS+= xpdf:${PORTSDIR}/graphics/xpdf -.endif - -.if ${OSVERSION} < 500000 -BROKEN= Does not compile on 4.X -.endif - -post-extract: -.for df in ${DOS2CNV} - for f in `${FIND} ${WRKSRC} -name ${df}`; do \ - ${CP} $$f $$f.dos && \ - ${TR} -d '\r' < $$f.dos > $$f ; \ - done -.endfor - ${CP} ${WRKSRC}/libs.linux ${WRKSRC}/libs.${OPSYS} - ${REINPLACE_CMD} -e 's|kicad/linux|${INSTDIR}/${OPSYS}|' \ - ${WRKSRC}/libs.${OPSYS} - -pre-configure: - for f in `${FIND} ${WRKSRC} -name ${MAKEFILE}`; do \ - ${REINPLACE_CMD} -e 's|CC = gcc|#CC = gcc|' \ - -e 's|LD = gcc|LD = ${CC}|' \ - -e 's|-O2|${CFLAGS} -I${X11BASE}/include|' \ - -e 's|wx-config|${WX_CONFIG}|' \ - -e 's|LDFLAGS =|LDFLAGS += -L${X11BASE}/lib|' \ - -e 's|libs.linux|libs.${OPSYS}|' \ - -e 's|gcc -D|${CC} -D|' $$f ; \ - done - ${REINPLACE_CMD} -e 's|kicad/linux|${INSTDIR}/${OPSYS}|' \ - -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/common/gestfich.cpp - ${REINPLACE_CMD} -e 's|/usr/bin/xpdf|${X11BASE}/bin/xpdf|' \ - -e 's|/usr/bin/konqueror|${LOCALBASE}/bin/konqueror|' \ - ${WRKSRC}/common/eda_doc.cpp - -pre-install: - ${MKDIR} ${PREFIX}/${INSTDIR}/${OPSYS}/plugins - (cd ${PREFIX} && ${TAR} -xzopf ${_DISTDIR}/${PORTNAME}-${DISTVERSION}.tgz) - ${RM} -rf ${PREFIX}/${INSTDIR}/linux-non_unicode \ - ${PREFIX}/${INSTDIR}/linux ${PREFIX}/${INSTDIR}/wings3d \ - ${PREFIX}/${INSTDIR}/LINUX.README - ${RMDIR} ${PREFIX}/${INSTDIR}/modules/packages3d/conn_HExx - -post-install: - ${LN} -sf ${BINS:S|^|${PREFIX}/${INSTDIR}/${OPSYS}/|} ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${TAR} -xf ${_DISTDIR}/doc_components-${DOCVERSION}.tgz \ - -C ${PREFIX}/${INSTDIR}/library - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/${INSTDIR}/library/doc -.else - ${RM} -rf ${PREFIX}/${INSTDIR}/library/doc -.endif - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/cad/kicad-devel/distinfo b/cad/kicad-devel/distinfo deleted file mode 100644 index 15d9d4816c2b..000000000000 --- a/cad/kicad-devel/distinfo +++ /dev/null @@ -1,9 +0,0 @@ -MD5 (kicad/kicad-2007-01-15.tgz) = d1530c44a44c620894ff0c98fd582a02 -SHA256 (kicad/kicad-2007-01-15.tgz) = 10a2ada595dd84d54fbe013f3230894999996660916698eae78773fd168b4ba1 -SIZE (kicad/kicad-2007-01-15.tgz) = 61333975 -MD5 (kicad/kicad-sources-2007-01-15.zip) = 61a0ba615b67af313d1214ed1a3d5a66 -SHA256 (kicad/kicad-sources-2007-01-15.zip) = f408deca193b0716b822a00fc161e69192fcdbd010711a8c957fdf661d0ed9d9 -SIZE (kicad/kicad-sources-2007-01-15.zip) = 1666781 -MD5 (kicad/doc_components-2006-12-08.tgz) = 79ff44209db4d679d6e97e535f1932fa -SHA256 (kicad/doc_components-2006-12-08.tgz) = da5d61b54c96a1348b66c7e2bc2516afbc0ef5bd9c9e94b74d70114293288e78 -SIZE (kicad/doc_components-2006-12-08.tgz) = 68666624 diff --git a/cad/kicad-devel/files/patch-libs.FreeBSD b/cad/kicad-devel/files/patch-libs.FreeBSD deleted file mode 100644 index 8d935b6a79d4..000000000000 --- a/cad/kicad-devel/files/patch-libs.FreeBSD +++ /dev/null @@ -1,106 +0,0 @@ ---- libs.FreeBSD.orig Sat Jan 27 00:07:38 2007 -+++ libs.FreeBSD Sat Jan 27 00:08:36 2007 -@@ -1,6 +1,6 @@ - - #Configuration for build kicad --KICAD_BIN = /usr/local/kicad/FreeBSD -+KICAD_BIN = ${PREFIX}/kicad/FreeBSD - - - SRCSUFF = .cpp -@@ -11,26 +11,31 @@ - # You must comment or uncomment this line for dynamic or static link - # dynamic link is less difficult than static link - # choose it if you have problems (libs not found, or unresolved references) ), or if kicad is running only on YOUR system. --KICAD_STATIC_LINK = 1 -+#KICAD_STATIC_LINK = 1 - - # path and version definition for wxWidgets and mesa libs --MESALIBSPATH = /usr/local/lib --WXPATH = `wx-config --prefix`/lib --PREFIX_WX_LIBS = lib`wx-config --basename` --SUFFIX_WX_LIBSTD = `wx-config --utility=` -+MESALIBSPATH = ${LOCALBASE}/lib -+WXPATH = `${WX_CONFIG} --prefix`/lib -+ifdef KICAD_STATIC_LINK -+PREFIX_WX_LIBS = lib`${WX_CONFIG} --basename` - SUFFIX_WX_LIBGL = _gl-$(LIBVERSION).a -+else -+PREFIX_WX_LIBS = `${WX_CONFIG} --basename` -+SUFFIX_WX_LIBGL = _gl-$(LIBVERSION) -+endif -+#SUFFIX_WX_LIBSTD = `${WX_CONFIG} --utility=` - - # Use static link for libstdc++.a (sometimes also libsupc++.a) - # locate libstdc++.a and copy it in kicad_dev/syslibs - ifdef KICAD_STATIC_LINK - #define path for a copy of libstdc++.a or/and libsupc++.a: --LIBSTDC = ../syslibs/libstdc++.a -+LIBSTDC = /usr/lib/libstdc++.a - else - # Or Use static link for libsupc++ or libstdc++ (more easy!!) - LIBSTDC = -lstdc++ - endif - --LIBVERSION=`wx-config --release` -+LIBVERSION=`${WX_CONFIG} --release` - - # use link static for wxWidgets - ifdef KICAD_STATIC_LINK -@@ -38,11 +43,11 @@ - $(MESALIBSPATH)/libGL.a $(MESALIBSPATH)/libGLU.a - - WXSYSLIB= $(WXPATH)/$(PREFIX_WX_LIBS)-$(LIBVERSION).a \ -- $(WXPATH)/libwxpng-$(LIBVERSION).a\ -- $(WXPATH)/libwxjpeg-$(LIBVERSION).a\ -- $(WXPATH)/libwxzlib-$(LIBVERSION).a\ -- /usr/X11R6/lib/libXinerama.a \ -- /usr/X11R6/lib/libXxf86vm.a \ -+ -lpng\ -+ -ljpeg\ -+ -lz\ -+ ${X11BASE}/lib/libXinerama.a \ -+ ${X11BASE}/lib/libXxf86vm.a \ - -lgtk-x11-2.0 -lgdk-x11-2.0 \ - -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lgthread-2.0\ - -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl\ -@@ -51,12 +56,12 @@ - - - WXSYSLIB_WITH_GL= $(WXPATH)/$(PREFIX_WX_LIBS)-$(LIBVERSION).a \ -- $(WXPATH)/libwxpng-$(LIBVERSION).a\ -- $(WXPATH)/libwxjpeg-$(LIBVERSION).a\ -- $(WXPATH)/libwxzlib-$(LIBVERSION).a\ -+ -lpng\ -+ -ljpeg\ -+ -lz\ - $(LIBS3D)\ -- /usr/X11R6/lib/libXinerama.a \ -- /usr/X11R6/lib/libXxf86vm.a \ -+ ${X11BASE}/lib/libXinerama.a \ -+ ${X11BASE}/lib/libXxf86vm.a \ - -lgtk-x11-2.0 -lgdk-x11-2.0 \ - -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lgthread-2.0\ - -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl\ -@@ -64,16 +69,16 @@ - -L/usr/lib - else - #or use "standard command" for wxWidgets --WXSYSLIB= `wx-config --libs std` --WXSYSLIB_WITH_GL= `wx-config --libs std,gl` -+WXSYSLIB= `${WX_CONFIG} --libs` -+WXSYSLIB_WITH_GL= `${WX_CONFIG} --libs std,gl` - endif - - --# attention à l'ordre des libairies --LIBS = -L/usr/local/lib -L/usr/X11R6/lib\ -+# attention à l'ordre des librairies -+LIBS = -L${LOCALBASE}/lib -L${X11BASE}/lib\ - $(EXTRALIBS) $(WXSYSLIB)\ - $(LIBSTDC) - --LIBS_WITH_GL = -L/usr/local/lib -L/usr/X11R6/lib\ -+LIBS_WITH_GL = -L${LOCALBASE}/lib -L${X11BASE}/lib\ - $(EXTRALIBS) $(WXSYSLIB_WITH_GL)\ - $(LIBSTDC) diff --git a/cad/kicad-devel/files/patch-makefile.gtk b/cad/kicad-devel/files/patch-makefile.gtk deleted file mode 100644 index 4f20fe2db624..000000000000 --- a/cad/kicad-devel/files/patch-makefile.gtk +++ /dev/null @@ -1,24 +0,0 @@ ---- makefile.gtk.orig Wed Jun 28 23:32:09 2006 -+++ makefile.gtk Wed Jun 28 23:35:44 2006 -@@ -1,15 +1,15 @@ - KICAD_SUBDIRS = common 3d-viewer eeschema eeschema/plugins pcbnew cvpcb kicad gerbview - KICAD_SUBDIRS_BIN = eeschema eeschema/plugins pcbnew cvpcb kicad gerbview - # How to invoke make: --MAKE = make -k -f makefile.gtk --MAKE_INSTALL = make -f makefile.gtk install --MAKE_CLEAN = make -f makefile.gtk clean -+MAKE_FLAGS = -k -f -+MAKEFILE = makefile.gtk -+INSTALL_TARGET = install - - all: -- @for d in $(KICAD_SUBDIRS); do (cd $$d && $(MAKE)); done -+ @for d in $(KICAD_SUBDIRS); do (cd $$d && $(MAKE) $(MAKE_FLAGS) $(MAKEFILE)); done - - install: -- @for d in $(KICAD_SUBDIRS_BIN); do (cd $$d && $(MAKE_INSTALL)); done -+ @for d in $(KICAD_SUBDIRS_BIN); do (cd $$d && $(MAKE) $(MAKE_FLAGS) $(MAKEFILE) $(INSTALL_TARGET)); done - - clean: -- @for d in $(KICAD_SUBDIRS); do (cd $$d && $(MAKE_CLEAN)); done -+ @for d in $(KICAD_SUBDIRS); do (cd $$d && $(MAKE) $(MAKE_FLAGS) $(MAKEFILE) clean); done diff --git a/cad/kicad-devel/files/patch-pcbnew__class_module.cpp b/cad/kicad-devel/files/patch-pcbnew__class_module.cpp deleted file mode 100644 index 6ba99924cdf3..000000000000 --- a/cad/kicad-devel/files/patch-pcbnew__class_module.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- ./pcbnew/class_module.cpp.orig Mon Dec 5 09:47:56 2005 -+++ ./pcbnew/class_module.cpp Sun Dec 25 16:55:30 2005 -@@ -1020,7 +1020,7 @@ - pos += 14;
- if ( flag ) // Affichage date de modification (utile en Module Editor)
- {
-- strcpy(Line, ctime(&m_LastEdit_Time));
-+ strcpy(Line, ctime((time_t*) &m_LastEdit_Time));
- strtok(Line," \n\r");
- strcpy( bufcar, strtok(NULL," \n\r") ); strcat(bufcar," ");
- strcat( bufcar, strtok(NULL," \n\r") ); strcat(bufcar,", ");
diff --git a/cad/kicad-devel/pkg-descr b/cad/kicad-devel/pkg-descr deleted file mode 100644 index 9950597bc3fc..000000000000 --- a/cad/kicad-devel/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Kicad is an open source (GPL) software for the creation of electronic schematic -diagrams and printed circuit board artwork. - -Designed and written by Jean-Pierre Charras, a researcher at LIS (Laboratoire -des Images et des Signaux) and a teacher in IUT de Saint Martin d'Heres -(France), in the field of electrical engineering and image processing. - -Kicad is a set of four softwares and a project manager: - - * Eeschema: Schematic entry. - * Pcbnew: Board editor. - * Gerbview: GERBER viewer (photoplotter documents). - * Cvpcb: footprint selector for components used in the circuit design. - * Kicad: project manager. - -WWW: http://iut-tice.ujf-grenoble.fr/kicad/ -WWW: http://www.lis.inpg.fr/realise_au_lis/kicad/index.html diff --git a/cad/kicad-devel/pkg-message b/cad/kicad-devel/pkg-message deleted file mode 100644 index cad8dd322691..000000000000 --- a/cad/kicad-devel/pkg-message +++ /dev/null @@ -1,7 +0,0 @@ -.......................................................... -If you plan to create 3D shapes for Printed board modules, -install the 3D modeler wings3D (port graphics/wings). - -Pcbnew uses the exported files in wrml (.wrl) format from -wings3d (not the native .wings format). -.......................................................... diff --git a/cad/kicad-devel/pkg-plist b/cad/kicad-devel/pkg-plist deleted file mode 100644 index b7bd985b5d77..000000000000 --- a/cad/kicad-devel/pkg-plist +++ /dev/null @@ -1,1383 +0,0 @@ -%%INSTDIR%%/%%OPSYS%%/cvpcb -@exec ln -sf %D/%F %D/bin -@unexec rm %D/bin/%f 2>&1 >/dev/null || true -%%INSTDIR%%/%%OPSYS%%/eeschema -@exec ln -sf %D/%F %D/bin -@unexec rm %D/bin/%f 2>&1 >/dev/null || true -%%INSTDIR%%/%%OPSYS%%/gerbview -@exec ln -sf %D/%F %D/bin -@unexec rm %D/bin/%f 2>&1 >/dev/null || true -%%INSTDIR%%/%%OPSYS%%/kicad -@exec ln -sf %D/%F %D/bin -@unexec rm %D/bin/%f 2>&1 >/dev/null || true -%%INSTDIR%%/%%OPSYS%%/pcbnew -@exec ln -sf %D/%F %D/bin -@unexec rm %D/bin/%f 2>&1 >/dev/null || true -%%INSTDIR%%/%%OPSYS%%/plugins/netlist_form_pads-pcb -%%INSTDIR%%/INSTALL.txt -%%INSTDIR%%/author.txt -%%INSTDIR%%/contrib.txt -%%INSTDIR%%/copyright.txt -%%INSTDIR%%/demos/ecc83/ecc83-pp.brd -%%INSTDIR%%/demos/ecc83/ecc83-pp.cache.lib -%%INSTDIR%%/demos/ecc83/ecc83-pp.cmp -%%INSTDIR%%/demos/ecc83/ecc83-pp.net -%%INSTDIR%%/demos/ecc83/ecc83-pp.pro -%%INSTDIR%%/demos/ecc83/ecc83-pp.sch -%%INSTDIR%%/demos/ecc83/ecc83-pp_v2.brd -%%INSTDIR%%/demos/ecc83/ecc83-pp_v2.pro -%%INSTDIR%%/demos/ecc83/ecc83-pp_v2.sch -%%INSTDIR%%/demos/electric/electric.cache.lib -%%INSTDIR%%/demos/electric/electric.pro -%%INSTDIR%%/demos/electric/electric.sch -%%INSTDIR%%/demos/interf_u/interf_u.brd -%%INSTDIR%%/demos/interf_u/interf_u.cache.lib -%%INSTDIR%%/demos/interf_u/interf_u.cmp -%%INSTDIR%%/demos/interf_u/interf_u.net -%%INSTDIR%%/demos/interf_u/interf_u.pro -%%INSTDIR%%/demos/interf_u/interf_u.sch -%%INSTDIR%%/demos/microwave/microwave.brd -%%INSTDIR%%/demos/microwave/microwave.pro -%%INSTDIR%%/demos/microwave/shape1.txt -%%INSTDIR%%/demos/pic_programmer/pic_programmer.bak -%%INSTDIR%%/demos/pic_programmer/pic_programmer.brd -%%INSTDIR%%/demos/pic_programmer/pic_programmer.cache.bck -%%INSTDIR%%/demos/pic_programmer/pic_programmer.cache.lib -%%INSTDIR%%/demos/pic_programmer/pic_programmer.cmp -%%INSTDIR%%/demos/pic_programmer/pic_programmer.net -%%INSTDIR%%/demos/pic_programmer/pic_programmer.pro -%%INSTDIR%%/demos/pic_programmer/pic_programmer.sch -%%INSTDIR%%/demos/pic_programmer/pic_sockets.sch -%%INSTDIR%%/demos/pspice/pspice.cache.lib -%%INSTDIR%%/demos/pspice/pspice.cir -%%INSTDIR%%/demos/pspice/pspice.pro -%%INSTDIR%%/demos/pspice/pspice.sch -%%INSTDIR%%/demos/sonde xilinx/sonde xilinx.brd -%%INSTDIR%%/demos/sonde xilinx/sonde xilinx.cache.lib -%%INSTDIR%%/demos/sonde xilinx/sonde xilinx.cmp -%%INSTDIR%%/demos/sonde xilinx/sonde xilinx.net -%%INSTDIR%%/demos/sonde xilinx/sonde xilinx.pro -%%INSTDIR%%/demos/sonde xilinx/sonde xilinx.sch -%%INSTDIR%%/demos/test_xil_95108/carte_test.brd -%%INSTDIR%%/demos/test_xil_95108/carte_test.cache.lib -%%INSTDIR%%/demos/test_xil_95108/carte_test.cmp -%%INSTDIR%%/demos/test_xil_95108/carte_test.net -%%INSTDIR%%/demos/test_xil_95108/carte_test.pro -%%INSTDIR%%/demos/test_xil_95108/carte_test.sch -%%INSTDIR%%/demos/video/bus_pci.sch -%%INSTDIR%%/demos/video/esvideo.sch -%%INSTDIR%%/demos/video/graphic.sch -%%INSTDIR%%/demos/video/modul.sch -%%INSTDIR%%/demos/video/muxdata.sch -%%INSTDIR%%/demos/video/pal-ntsc.sch -%%INSTDIR%%/demos/video/rams.sch -%%INSTDIR%%/demos/video/video.brd -%%INSTDIR%%/demos/video/video.cache.lib -%%INSTDIR%%/demos/video/video.cmp -%%INSTDIR%%/demos/video/video.net -%%INSTDIR%%/demos/video/video.pro -%%INSTDIR%%/demos/video/video.sch -%%INSTDIR%%/doc_conv_orcad_to_kicad.txt -%%INSTDIR%%/doc_conv_orcad_to_kicad_spanish.txt -%%INSTDIR%%/gpl.txt -%%INSTDIR%%/help/GUI_comment_traduire.sxw -%%INSTDIR%%/help/de/contents.hhc -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_01_DE.sxw -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_02_DE.sxw -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_03_DE.sxw -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_06_DE.sxw -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_07_DE.sxw -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_09_DE.sxw -%%INSTDIR%%/help/de/docs_src/eeschema/Eeschema_Teil_12_DE.sxw -%%INSTDIR%%/help/de/kicad.hhp -%%INSTDIR%%/help/en/contents.hhc -%%INSTDIR%%/help/en/cvpcb/cvpcb-en.html -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_10907a97.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_15f50cc9.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_16d1daed.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_1b76db63.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_2bb79e55.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_3ad74e38.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_46963029.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_5c0e6601.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_5ec697a9.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_66ed9576.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_6818c805.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_6eae571a.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_753ddb29.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m1f2a82d2.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m34e24679.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m355bf6ae.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m35d91fcb.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m39b7bc1b.gif -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m465458b7.gif -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m577c9b2d.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m64f95031.gif -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m68f5886e.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m710c0eda.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m7211a9fc.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m7717e802.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m7ad16255.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_m7e427ed3.png -%%INSTDIR%%/help/en/cvpcb/cvpcb-en_html_maab4014.png -%%INSTDIR%%/help/en/docs_src/cvpcb/cvpcb_EN.odt -%%INSTDIR%%/help/en/docs_src/cvpcb/cvpcb_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter10_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter11_EN.odt -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter11_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter12_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter1_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter2_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter3_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter4_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter5_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter6_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter7_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter8_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_Chapter9_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/Eeschema_covers_EN.sxw -%%INSTDIR%%/help/en/docs_src/eeschema/eeschema.html -%%INSTDIR%%/help/en/docs_src/file_formats/board_file_format_EN.odt -%%INSTDIR%%/help/en/docs_src/file_formats/board_file_format_EN.sxw -%%INSTDIR%%/help/en/docs_src/file_formats/file_formats.html -%%INSTDIR%%/help/en/docs_src/file_formats/library_file_format_EN.sxw -%%INSTDIR%%/help/en/docs_src/file_formats/schematic_file_format_EN.odt -%%INSTDIR%%/help/en/docs_src/file_formats/schematic_file_format_EN.sxw -%%INSTDIR%%/help/en/docs_src/gerbview/dcodes.sxw -%%INSTDIR%%/help/en/docs_src/gerbview/gerbview.html -%%INSTDIR%%/help/en/docs_src/gerbview/rs274x.sxw -%%INSTDIR%%/help/en/docs_src/kicad/kicad_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew.html -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_EN.sxg -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap10_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap11_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap1_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap2_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap3_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap4_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap5_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap6_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap7_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap8_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_chap9_EN.sxw -%%INSTDIR%%/help/en/docs_src/pcbnew/pcbnew_covers_EN.sxw -%%INSTDIR%%/help/en/eeschema/doc_eeschema.zip -%%INSTDIR%%/help/en/eeschema/eeschema.html -%%INSTDIR%%/help/en/file_formats/file_formats.html -%%INSTDIR%%/help/en/file_formats/file_formats.zip -%%INSTDIR%%/help/en/gerbview/doc_gerbview.zip -%%INSTDIR%%/help/en/gerbview/gerbview.html -%%INSTDIR%%/help/en/kicad.hhp -%%INSTDIR%%/help/en/kicad/kicad.html -%%INSTDIR%%/help/en/kicad/kicad_html_1f2b2ef9.png -%%INSTDIR%%/help/en/kicad/kicad_html_21af0dc0.png -%%INSTDIR%%/help/en/kicad/kicad_html_450a70e8.png -%%INSTDIR%%/help/en/kicad/kicad_html_4e2d3537.png -%%INSTDIR%%/help/en/kicad/kicad_html_7907960d.png -%%INSTDIR%%/help/en/kicad/kicad_html_7f7f71a7.png -%%INSTDIR%%/help/en/kicad/kicad_html_m121af765.png -%%INSTDIR%%/help/en/kicad/kicad_html_m20223bf4.png -%%INSTDIR%%/help/en/kicad/kicad_html_m20d2b210.png -%%INSTDIR%%/help/en/kicad/kicad_html_m5da4dd8d.png -%%INSTDIR%%/help/en/kicad/kicad_html_m5e89f6f4.png -%%INSTDIR%%/help/en/kicad/kicad_html_m6738784a.png -%%INSTDIR%%/help/en/kicad/kicad_html_m7fc53a80.png -%%INSTDIR%%/help/en/pcbnew/doc_pcbnew.zip -%%INSTDIR%%/help/en/pcbnew/footprints.pdf -%%INSTDIR%%/help/en/pcbnew/pcbnew.html -%%INSTDIR%%/help/es/contents.hhc -%%INSTDIR%%/help/es/cvpcb/cvpcb-es.html -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_163859f5.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_1de2e523.gif -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_1ed7ac6f.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_445df7ae.gif -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_4604a6d9.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_5810ed21.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_5e042dbf.gif -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_676c5f75.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_712a8f63.gif -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_77adc12a.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m11acf4e8.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m1253cc2c.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m1d2ff954.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m1e94d17.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m214299f.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m25ec8043.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m336f54e7.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m35847702.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m3721a797.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m446f2400.gif -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m56c39fcf.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m56ca91e1.gif -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m632ae088.png -%%INSTDIR%%/help/es/cvpcb/cvpcb-es_html_m660c105b.png -%%INSTDIR%%/help/es/docs_src/cvpcb/cvpcb-es.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter10_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter11_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter12_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter1_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter2_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter3_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter4_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter5_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter6_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter7_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter8_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/Eeschema_Chapter9_ES.sxw -%%INSTDIR%%/help/es/docs_src/eeschema/eeschema-es.html -%%INSTDIR%%/help/es/docs_src/eeschema/eeschema.sxg -%%INSTDIR%%/help/es/docs_src/eeschema/tablemat.sxw -%%INSTDIR%%/help/es/docs_src/file_format/board_file_format.sxw -%%INSTDIR%%/help/es/docs_src/file_format/formato_archivo_biblioteca.sxw -%%INSTDIR%%/help/es/docs_src/file_format/formato_archivo_esquema.sxw -%%INSTDIR%%/help/es/docs_src/kicad/kicad-es.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/Tablemat.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap1.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap10.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap11.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap2.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap3.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap4.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap5.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap6.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap7.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap8.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/cap9.sxw -%%INSTDIR%%/help/es/docs_src/pcbnew/pcbnew-es.html -%%INSTDIR%%/help/es/docs_src/pcbnew/pcbnew.sxg -%%INSTDIR%%/help/es/eeschema/doc_eeschema-es.zip -%%INSTDIR%%/help/es/eeschema/eeschema-es.html -%%INSTDIR%%/help/es/file_formats/file_formats-es.html -%%INSTDIR%%/help/es/file_formats/file_formats.zip -%%INSTDIR%%/help/es/gerbview/doc_gerbview.zip -%%INSTDIR%%/help/es/gerbview/gerbview.html -%%INSTDIR%%/help/es/kicad.hhp -%%INSTDIR%%/help/es/kicad/kicad-es.html -%%INSTDIR%%/help/es/kicad/kicad-es_html_1f2b2ef9.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_21af0dc0.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_450a70e8.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_4e2d3537.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_5816cb05.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_7907960d.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_m121af765.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_m1b04bf.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_m20d2b210.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_m3565d118.jpg -%%INSTDIR%%/help/es/kicad/kicad-es_html_m356c7c74.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_m5e89f6f4.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_m6c6141ac.png -%%INSTDIR%%/help/es/kicad/kicad-es_html_mec018c7.png -%%INSTDIR%%/help/es/pcbnew/doc_pcbnew-es.zip -%%INSTDIR%%/help/es/pcbnew/footprints.pdf -%%INSTDIR%%/help/es/pcbnew/pcbnew-es.html -%%INSTDIR%%/help/fr/contents.hhc -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr.html -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_10907a97.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_16d1daed.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_1b76db63.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_374244ea.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_3ad74e38.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_3f529e12.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_46963029.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_5c0e6601.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_5ec697a9.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_5f6c7d3.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_66ed9576.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_6818c805.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_6eae571a.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_753ddb29.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m1f2a82d2.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m2f3880bd.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m34e24679.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m465458b7.gif -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m4d7e20ed.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m5330974a.gif -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m577c9b2d.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m5e043466.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m64f95031.gif -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m710c0eda.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m7211a9fc.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m740fae3a.gif -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m7717e802.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m7ad16255.png -%%INSTDIR%%/help/fr/cvpcb/cvpcb-fr_html_m7e427ed3.png -%%INSTDIR%%/help/fr/docs_src/cvpcb/cvpcb-cover-FR.sxw -%%INSTDIR%%/help/fr/docs_src/cvpcb/cvpcb-fr.odt -%%INSTDIR%%/help/fr/docs_src/cvpcb/cvpcb-fr.sxg -%%INSTDIR%%/help/fr/docs_src/cvpcb/cvpcb-fr.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap1.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap10-libedit-bases.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap11-libedit-av.odt -%%INSTDIR%%/help/fr/docs_src/eeschema/chap11-libedit-av.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap12-viewlib.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap2-commandes.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap3-menu.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap4-toolbar.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap5-edition.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap6-annotation.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap7-erc.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap8-netlistes.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/chap9-plot-print.sxw -%%INSTDIR%%/help/fr/docs_src/eeschema/eeschema.html -%%INSTDIR%%/help/fr/docs_src/eeschema/eeschema.sxg -%%INSTDIR%%/help/fr/docs_src/eeschema/eeschema_covers_FR.sxw -%%INSTDIR%%/help/fr/docs_src/file_formats/board_file_format.odt -%%INSTDIR%%/help/fr/docs_src/file_formats/board_file_format.sxw -%%INSTDIR%%/help/fr/docs_src/file_formats/file_formats.html -%%INSTDIR%%/help/fr/docs_src/file_formats/library_file_format.sxw -%%INSTDIR%%/help/fr/docs_src/file_formats/schematic_file_format.sxw -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/conn_DBxx.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/conn_HExx.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/connect1.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/connect2.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/dil_ell.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/dil_rd.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/discret1.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/libcms.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/merge_ps-files.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/miscellanous.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/pin_array.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/sockets-part1.ps -%%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc/sockets-part2.ps -%%INSTDIR%%/help/fr/docs_src/gerbview/dcodes.sxw -%%INSTDIR%%/help/fr/docs_src/gerbview/gerbview.html -%%INSTDIR%%/help/fr/docs_src/gerbview/rs274x.sxw -%%INSTDIR%%/help/fr/docs_src/kicad/kicad_FR.sxg -%%INSTDIR%%/help/fr/docs_src/kicad/kicad_FR.sxw -%%INSTDIR%%/help/fr/docs_src/kicad/kicad_couv_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew.html -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew.sxg -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap10_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap11_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap1_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap2_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap3_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap4_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap5_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap6_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap7_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap8_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_chap9_FR.sxw -%%INSTDIR%%/help/fr/docs_src/pcbnew/pcbnew_covers_FR.sxw -%%INSTDIR%%/help/fr/eeschema/doc_eeschema.zip -%%INSTDIR%%/help/fr/eeschema/eeschema.html -%%INSTDIR%%/help/fr/eeschema/eeschema.pdf -%%INSTDIR%%/help/fr/file_formats/file_formats.html -%%INSTDIR%%/help/fr/file_formats/file_formats.zip -%%INSTDIR%%/help/fr/gerbview/doc_gerbview.zip -%%INSTDIR%%/help/fr/gerbview/gerbview.html -%%INSTDIR%%/help/fr/kicad.hhp -%%INSTDIR%%/help/fr/kicad/kicad.html -%%INSTDIR%%/help/fr/kicad/kicad.pdf -%%INSTDIR%%/help/fr/kicad/kicad_html_1f2b2ef9.png -%%INSTDIR%%/help/fr/kicad/kicad_html_21af0dc0.png -%%INSTDIR%%/help/fr/kicad/kicad_html_3c10fb23.png -%%INSTDIR%%/help/fr/kicad/kicad_html_450a70e8.png -%%INSTDIR%%/help/fr/kicad/kicad_html_4e2d3537.png -%%INSTDIR%%/help/fr/kicad/kicad_html_5816cb05.png -%%INSTDIR%%/help/fr/kicad/kicad_html_7907960d.png -%%INSTDIR%%/help/fr/kicad/kicad_html_m121af765.png -%%INSTDIR%%/help/fr/kicad/kicad_html_m20d2b210.png -%%INSTDIR%%/help/fr/kicad/kicad_html_m356c7c74.png -%%INSTDIR%%/help/fr/kicad/kicad_html_m5bdff0e6.png -%%INSTDIR%%/help/fr/kicad/kicad_html_m5e89f6f4.png -%%INSTDIR%%/help/fr/kicad/kicad_html_m6c6141ac.png -%%INSTDIR%%/help/fr/kicad/kicad_html_mec018c7.png -%%INSTDIR%%/help/fr/pcbnew/doc_pcbnew.zip -%%INSTDIR%%/help/fr/pcbnew/footprints.pdf -%%INSTDIR%%/help/fr/pcbnew/pcbnew.html -%%INSTDIR%%/help/it/contents.hhc -%%INSTDIR%%/help/it/docs_src/eeschema/Eeschema_Chapter12_IT.sxw -%%INSTDIR%%/help/it/docs_src/eeschema/Eeschema_Chapter1_IT.sxw -%%INSTDIR%%/help/it/docs_src/eeschema/Eeschema_Chapter6_IT.sxw -%%INSTDIR%%/help/it/docs_src/pcbnew/pcbnew_chap1_IT.sxw -%%INSTDIR%%/help/it/docs_src/pcbnew/pcbnew_chap2_IT.sxw -%%INSTDIR%%/help/it/docs_src/pcbnew/pcbnew_chap3_IT.sxw -%%INSTDIR%%/help/it/kicad.hhp -%%INSTDIR%%/help/pt/contents.hhc -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt.html -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_11370164.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_30f04152.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_37fab2f2.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_41084b87.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_535e1801.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_53814bf1.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_5470c784.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_55ad0c61.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_618c7091.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_66d42369.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_674e844.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_6c43823e.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_88d72ec.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_eecbfff.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m13b5b7a1.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m21e00917.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m30efa244.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m48305158.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m49c35e7f.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m4eda1ccc.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m50b52a88.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m6575c7c8.gif -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_m78416bcd.png -%%INSTDIR%%/help/pt/cvpcb/cvpcb-pt_html_mfaa4758.png -%%INSTDIR%%/help/pt/docs_src/cvpcb/cvpcb-pt.sxg -%%INSTDIR%%/help/pt/docs_src/cvpcb/cvpcb-pt.sxw -%%INSTDIR%%/help/pt/docs_src/cvpcb/cvpcb_capa_pt_br.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/EEschema_capa.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap10_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap11_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap12_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap1_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap2_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap3_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap4_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap5_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap6_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap7_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap8_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/Eeschema_Cap9_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/eeschema/eeschema.sxg -%%INSTDIR%%/help/pt/docs_src/eeschema/eeschema_pt_BR.html -%%INSTDIR%%/help/pt/docs_src/file_formats/board_file_format.sxw -%%INSTDIR%%/help/pt/docs_src/file_formats/library_file_format.sxw -%%INSTDIR%%/help/pt/docs_src/file_formats/schematic_file_format.sxw -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/conn_DBxx.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/conn_HExx.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/connect1.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/connect2.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/dil_ell.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/dil_rd.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/discret1.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/libcms.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/merge_ps-files.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/miscellanous.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/pin_array.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/sockets-part1.ps -%%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc/sockets-part2.ps -%%INSTDIR%%/help/pt/docs_src/kicad/kicad_capa_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/kicad/kicad_pt_BR.sxg -%%INSTDIR%%/help/pt/docs_src/kicad/kicad_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew.html -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew.sxg -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_capa_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap10_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap11_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap1_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap2_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap3_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap4_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap5_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap6_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap7_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap8_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_chap9_pt_BR.sxw -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_pt_BR.html -%%INSTDIR%%/help/pt/docs_src/pcbnew/pcbnew_pt_BR.sxg -%%INSTDIR%%/help/pt/eeschema/doc_eeschema-pt.zip -%%INSTDIR%%/help/pt/eeschema/eeschema-pt.html -%%INSTDIR%%/help/pt/eeschema/eeschema_pt_BR.html -%%INSTDIR%%/help/pt/file_formats/file_formats.html -%%INSTDIR%%/help/pt/file_formats/file_formats.zip -%%INSTDIR%%/help/pt/gerbview/doc_gerbview.zip -%%INSTDIR%%/help/pt/gerbview/gerbview.html -%%INSTDIR%%/help/pt/kicad.hhp -%%INSTDIR%%/help/pt/kicad/kicad-pt.html -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR.html -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_1f2b2ef9.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_21af0dc0.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_240131a9.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_3d3a3f29.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_450a70e8.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_5c707ff7.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m121af765.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m1b04bf.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m1d9ca2c7.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m20d2b210.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m260932da.gif -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m3262df08.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m341a8791.png -%%INSTDIR%%/help/pt/kicad/kicad_pt_BR_html_m662f19ea.png -%%INSTDIR%%/help/pt/pcbnew/doc_pcbnew.zip -%%INSTDIR%%/help/pt/pcbnew/pcbnew.html -%%INSTDIR%%/help/pt/pcbnew/pcbnew_pt_BR.html -%%INSTDIR%%/help/ru/contents.hhc -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en.html -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_10907a97.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_10ca5232.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_15f50cc9.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_16d1daed.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_2bb79e55.jpg -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_5c0e6601.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_5ec697a9.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_6818c805.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_696a3459.gif -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_6eae571a.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_753ddb29.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_7fb827d9.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m19bcbd9f.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m1c8b787d.gif -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m1f2a82d2.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m29ad4d1.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m34e24679.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m355bf6ae.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m35d91fcb.jpg -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m465458b7.gif -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m577c9b2d.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m64f95031.gif -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m68f5886e.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m710c0eda.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m7211a9fc.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m78917b18.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m7ad16255.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m7e427ed3.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_m8b3bfa3.png -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_maab4014.jpg -%%INSTDIR%%/help/ru/cvpcb/cvpcb-en_html_maab4014.png -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter10_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter11_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter12_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter1_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter2_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter3_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter4_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter5_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter6_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter7_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter8_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/Eeschema_Chapter9_RU.sxw -%%INSTDIR%%/help/ru/docs_src/eeschema/eeschema_ru.html -%%INSTDIR%%/help/ru/docs_src/kicad/kicad_RU.sxw -%%INSTDIR%%/help/ru/docs_src/pcbnew/pcbnew_chap1_RU.sxw -%%INSTDIR%%/help/ru/docs_src/pcbnew/pcbnew_chap2_RU.sxw -%%INSTDIR%%/help/ru/docs_src/pcbnew/pcbnew_chap3_RU.sxw -%%INSTDIR%%/help/ru/docs_src/pcbnew/pcbnew_chap4_RU.sxw -%%INSTDIR%%/help/ru/docs_src/pcbnew/pcbnew_chap5_RU.sxw -%%INSTDIR%%/help/ru/docs_src/pcbnew/pcbnew_ru.html -%%INSTDIR%%/help/ru/eeschema/doc_eeschema.zip -%%INSTDIR%%/help/ru/eeschema/eeschema_ru.html -%%INSTDIR%%/help/ru/file_formats/file_formats.html -%%INSTDIR%%/help/ru/file_formats/file_formats.zip -%%INSTDIR%%/help/ru/gerbview/doc_gerbview.zip -%%INSTDIR%%/help/ru/gerbview/gerbview.html -%%INSTDIR%%/help/ru/kicad.hhp -%%INSTDIR%%/help/ru/kicad/kicad.html -%%INSTDIR%%/help/ru/kicad/kicad_html_1f2b2ef9.png -%%INSTDIR%%/help/ru/kicad/kicad_html_21af0dc0.png -%%INSTDIR%%/help/ru/kicad/kicad_html_450a70e8.png -%%INSTDIR%%/help/ru/kicad/kicad_html_4e2d3537.png -%%INSTDIR%%/help/ru/kicad/kicad_html_7907960d.png -%%INSTDIR%%/help/ru/kicad/kicad_html_7f7f71a7.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m121af765.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m20223bf4.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m20d2b210.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m5da4dd8d.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m5e89f6f4.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m6738784a.png -%%INSTDIR%%/help/ru/kicad/kicad_html_m7fc53a80.png -%%INSTDIR%%/help/ru/pcbnew/doc_pcbnew.zip -%%INSTDIR%%/help/ru/pcbnew/pcbnew_ru.html -%%INSTDIR%%/internat/de/kicad.mo -%%INSTDIR%%/internat/de/kicad.po -%%INSTDIR%%/internat/es/kicad.mo -%%INSTDIR%%/internat/es/kicad.po -%%INSTDIR%%/internat/fr/kicad.mo -%%INSTDIR%%/internat/fr/kicad.po -%%INSTDIR%%/internat/hu/kicad.mo -%%INSTDIR%%/internat/hu/kicad.po -%%INSTDIR%%/internat/it/kicad.mo -%%INSTDIR%%/internat/it/kicad.po -%%INSTDIR%%/internat/ko/kicad.mo -%%INSTDIR%%/internat/ko/kicad.po -%%INSTDIR%%/internat/pl/kicad.mo -%%INSTDIR%%/internat/pl/kicad.po -%%INSTDIR%%/internat/pt/kicad.mo -%%INSTDIR%%/internat/pt/kicad.po -%%INSTDIR%%/internat/sl/kicad.mo -%%INSTDIR%%/internat/sl/kicad.po -%%INSTDIR%%/library/74xx.dcm -%%INSTDIR%%/library/74xx.lib -%%INSTDIR%%/library/adc-dac.dcm -%%INSTDIR%%/library/adc-dac.lib -%%INSTDIR%%/library/ampli_op.sym -%%INSTDIR%%/library/analog_switches.dcm -%%INSTDIR%%/library/analog_switches.lib -%%INSTDIR%%/library/and.sym -%%INSTDIR%%/library/audio.dcm -%%INSTDIR%%/library/audio.lib -%%INSTDIR%%/library/brooktre.dcm -%%INSTDIR%%/library/brooktre.lib -%%INSTDIR%%/library/buffer.sym -%%INSTDIR%%/library/cmos4000.dcm -%%INSTDIR%%/library/cmos4000.lib -%%INSTDIR%%/library/cmos_ieee.dcm -%%INSTDIR%%/library/cmos_ieee.lib -%%INSTDIR%%/library/conn.dcm -%%INSTDIR%%/library/conn.lib -%%INSTDIR%%/library/contrib.dcm -%%INSTDIR%%/library/contrib.lib -%%INSTDIR%%/library/cypress.lib -%%INSTDIR%%/library/device.dcm -%%INSTDIR%%/library/device.lib -%%INSTDIR%%/library/digital-audio.dcm -%%INSTDIR%%/library/digital-audio.lib -%%INSTDIR%%/library/display.dcm -%%INSTDIR%%/library/display.lib -%%PORTDOCS%%%%INSTDIR%%/library/doc/74xx/74f181.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/74xx/74hc573.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/74xx/74hc_hct74.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/74xx/74ls86.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/ad7533.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/ad775.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/ad7819.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/adc0800.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/adc08060.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/adc1173.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/adc-dac/ltc1406.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ADuC816.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ad626_c.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ad629_a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ad9280.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ad9708.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/adg417.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/adg419.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/adg441.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/adg611_2_3_0.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/adg619-620.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/adg636.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/mat02.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/mat03.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/op275.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2135.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2141.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2142.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2143.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2163.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2165.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog-dev/ssm2402.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/DG417-DG419.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/adg636.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/dg308.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/dg441.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/dg611_2_3_0.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/dg619-620.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/analog_mux&switches/dg9421-22.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/cmos4000/mc14020.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/cmos4000/mc14040.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/contrib/fx614ds.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/crystal/cs5361.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/crystal/cs5396.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/cs5361.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/cs5396.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/cs8406.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/cs8413-4.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/cs8420.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/cs8427-f.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/digital-audio/ds1267.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/D426SURWAS530A2.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/HDSP-48xx.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/HDSP-7xxx.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/LTC-6960HR.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/LTC-6980HR.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/d426gwa.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/display-DA04-11GWA.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/display-DC04-11GWA.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/display/mv57164.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/elantec/el7242.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/elantec/el7243.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/gennum/gs9020.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/gennum/gs9025a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/gennum/gs9032.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/intersil/dg441_2.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/intersil/icl7660.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ir/ir2110.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/lt1086.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/lt1108.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/lt1129.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/lt1175.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/lt1611f.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/lt3430f.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/ltc1594-8.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/ltc1624.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/linear-tec/ltc1878.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/DG417-DG419.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/MAX1647-MAX1648.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/MAX220-MAX249.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/MAX2605-MAX2609.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/MAX5436-MAX5439.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/MAX872-MAX874.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/ds1302.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/ds1621.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/max200-max213.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/max3224-max3245.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/max471-max472.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/max6351-max6360.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/maxim/max690-max695.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/memory/24xx512.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/memory/27c010.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/memory/27c020.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/memory/27c040.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/memory/27c080.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/memory/28c256.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/micrel/mic2177.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/microchip/PIC16F819.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/microchip/dspic30f.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/microchip/pic16c62b-72b.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/microchip/pic16f62x.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/microchip/pic16f84.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/motorola/m68hc12B.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/motorola/mmc2114.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/ds7830.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/lf398.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/lm158.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/lm1877.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/lm193.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/lm555.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/ns/pc16550d.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/onsemi/mc33178.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/onsemi/mc34064.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/op_amps/lm324.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/op_amps/lm358.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/op_amps/lmc6062.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/op_amps/lmc6082.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/opto/cpc1017n.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/opto/laa110.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/opto/lbb110.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/opto/lcc110.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/opto/silonex_nsl-32sr3.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/dac08.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/pca9516.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/pca9516_3.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/pcf8574.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/pcf8591.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/sa605.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/philips/tda8702.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lm117.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lm1578a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lm78lxx.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lm78xx.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lm79lxx.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lm79xx.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lp2985.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lp3963.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lt1372-1377.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lt1373.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/lt3472.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/regulator/mc34063.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/siliconix/dg308.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/siliconix/dg417L_8L_9L.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/siliconix/dg9421-22.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/siliconix/si9986.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/temic/tk5550.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/temic/u2770B.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/temic/u2770b.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/pga4311.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tl497a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tl7702a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tl7702b.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320c240.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320f2810.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320lf240x/tms320LF2407.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320lf240x/tms320LF240x.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320lf240x/tms320lf2406a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320lf240x/tms320lf240x-periph-spru357.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/texas/tms320lf240x/tms320lf240x.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/that_corporation/vca-2180x.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/that_corporation/vca-2181x.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/bipolar/2n4401.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/bipolar/2n7000.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/bipolar/bc237.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/bipolar/bc307.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/bipolar/bc807.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/mos/2n4401.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/mos/2n7000-7002.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/mos/2n7000.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/transistors/mos/irf530.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/video/av9173.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xicor/x9118.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xicor/x9250.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xicor/x9258.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xicor/x9268.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xicor/x9269.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/9500.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2/ac_dc_car.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2/description.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2/intro.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2/pinout.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2e/ac_dc_car.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2e/decription.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2e/intro.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2e/pinout.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan2e/spartan2e.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/spartan3/spartan3.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xc18V00proms.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xc18v00proms.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xc400x-pinout.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xc95108.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xc9536.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xc9572.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr30128xl.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr30256xl.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr3032xl.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr3064a.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr3064xl.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr3128xl.pdf -%%PORTDOCS%%%%INSTDIR%%/library/doc/xilinx/xcr3256xl.pdf -%%INSTDIR%%/library/dsp.dcm -%%INSTDIR%%/library/dsp.lib -%%INSTDIR%%/library/elec-unifil.dcm -%%INSTDIR%%/library/elec-unifil.lib -%%INSTDIR%%/library/et-ou.sym -%%INSTDIR%%/library/gennum.dcm -%%INSTDIR%%/library/gennum.lib -%%INSTDIR%%/library/graphic.dcm -%%INSTDIR%%/library/graphic.lib -%%INSTDIR%%/library/hc11.lib -%%INSTDIR%%/library/intel.dcm -%%INSTDIR%%/library/intel.lib -%%INSTDIR%%/library/interface.dcm -%%INSTDIR%%/library/interface.lib -%%INSTDIR%%/library/inv.sym -%%INSTDIR%%/library/linear.dcm -%%INSTDIR%%/library/linear.lib -%%INSTDIR%%/library/memory.dcm -%%INSTDIR%%/library/memory.lib -%%INSTDIR%%/library/microchip.dcm -%%INSTDIR%%/library/microchip.lib -%%INSTDIR%%/library/microchip1.dcm -%%INSTDIR%%/library/microchip1.lib -%%INSTDIR%%/library/microcontrollers.dcm -%%INSTDIR%%/library/microcontrollers.lib -%%INSTDIR%%/library/motorola.dcm -%%INSTDIR%%/library/motorola.lib -%%INSTDIR%%/library/nand.sym -%%INSTDIR%%/library/neg_power_symbol.sym -%%INSTDIR%%/library/or.sym -%%INSTDIR%%/library/philips.dcm -%%INSTDIR%%/library/philips.lib -%%INSTDIR%%/library/power.dcm -%%INSTDIR%%/library/power.lib -%%INSTDIR%%/library/power_symbol.sym -%%INSTDIR%%/library/pspice.dcm -%%INSTDIR%%/library/pspice.lib -%%INSTDIR%%/library/regul.dcm -%%INSTDIR%%/library/regul.lib -%%INSTDIR%%/library/siliconi.lib -%%INSTDIR%%/library/smalland.sym -%%INSTDIR%%/library/special.dcm -%%INSTDIR%%/library/special.lib -%%INSTDIR%%/library/texas.dcm -%%INSTDIR%%/library/texas.lib -%%INSTDIR%%/library/ttl_ieee.lib -%%INSTDIR%%/library/valves.dcm -%%INSTDIR%%/library/valves.lib -%%INSTDIR%%/library/xilinx.dcm -%%INSTDIR%%/library/xilinx.lib -%%INSTDIR%%/library/xor.sym -%%INSTDIR%%/licendoc.txt -%%INSTDIR%%/modules/affich.brd -%%INSTDIR%%/modules/capa_pol.equ -%%INSTDIR%%/modules/ci.equ -%%INSTDIR%%/modules/conn_DBxx.brd -%%INSTDIR%%/modules/conn_HExx.brd -%%INSTDIR%%/modules/connect.mdc -%%INSTDIR%%/modules/connect.mod -%%INSTDIR%%/modules/connect1.brd -%%INSTDIR%%/modules/connect2.brd -%%INSTDIR%%/modules/devcms.equ -%%INSTDIR%%/modules/device.equ -%%INSTDIR%%/modules/dil_ell.brd -%%INSTDIR%%/modules/dil_rd.brd -%%INSTDIR%%/modules/discret.mdc -%%INSTDIR%%/modules/discret.mod -%%INSTDIR%%/modules/discret1.brd -%%INSTDIR%%/modules/display.brd -%%INSTDIR%%/modules/display.mdc -%%INSTDIR%%/modules/display.mod -%%INSTDIR%%/modules/divers.mdc -%%INSTDIR%%/modules/divers.mod -%%INSTDIR%%/modules/docpackages/so20.pdf -%%INSTDIR%%/modules/docpackages/so24.pdf -%%INSTDIR%%/modules/iut.mdc -%%INSTDIR%%/modules/iut.mod -%%INSTDIR%%/modules/libcms.bak -%%INSTDIR%%/modules/libcms.brd -%%INSTDIR%%/modules/libcms.mdc -%%INSTDIR%%/modules/libcms.mod -%%INSTDIR%%/modules/miscellanous.brd -%%INSTDIR%%/modules/miscellanous.equ -%%INSTDIR%%/modules/muonde.brd -%%INSTDIR%%/modules/muonde.mdc -%%INSTDIR%%/modules/muonde.mod -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_female.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_female.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_female_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_female_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_male.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_male.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_male_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db15_male_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_female.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_female.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_female_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_female_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_male.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_male.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_male_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db25_male_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db37_female_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db37_female_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_female.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_female.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_female_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_female_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_male.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_male.wrl -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_male_pin90deg.wings -%%INSTDIR%%/modules/packages3d/conn_DBxx/db9_male_pin90deg.wrl -%%INSTDIR%%/modules/packages3d/conn_europe/c64abfd.wings -%%INSTDIR%%/modules/packages3d/conn_europe/c64abfd.wrl -%%INSTDIR%%/modules/packages3d/conn_europe/c64abmd.wings -%%INSTDIR%%/modules/packages3d/conn_europe/c64abmd.wrl -%%INSTDIR%%/modules/packages3d/conn_europe/c64acfd.wings -%%INSTDIR%%/modules/packages3d/conn_europe/c64acfd.wrl -%%INSTDIR%%/modules/packages3d/conn_europe/c64acmd.wings -%%INSTDIR%%/modules/packages3d/conn_europe/c64acmd.wrl -%%INSTDIR%%/modules/packages3d/conn_europe/c96abcfd.wings -%%INSTDIR%%/modules/packages3d/conn_europe/c96abcfd.wrl -%%INSTDIR%%/modules/packages3d/conn_europe/c96abcmd.wings -%%INSTDIR%%/modules/packages3d/conn_europe/c96abcmd.wrl -%%INSTDIR%%/modules/packages3d/connectors/fpc_conn_zif_smt_18.wings -%%INSTDIR%%/modules/packages3d/connectors/fpc_conn_zif_smt_18.wrl -%%INSTDIR%%/modules/packages3d/connectors/subclick_horiz.wings -%%INSTDIR%%/modules/packages3d/connectors/subclick_horiz.wrl -%%INSTDIR%%/modules/packages3d/connectors/testpoint.wings -%%INSTDIR%%/modules/packages3d/connectors/testpoint.wrl -%%INSTDIR%%/modules/packages3d/connectors/xrl3male_90deg.wings -%%INSTDIR%%/modules/packages3d/connectors/xrl3male_90deg.wrl -%%INSTDIR%%/modules/packages3d/connectors/xrl5male_90deg.wings -%%INSTDIR%%/modules/packages3d/connectors/xrl5male_90deg.wrl -%%INSTDIR%%/modules/packages3d/device/bnc-ci.wings -%%INSTDIR%%/modules/packages3d/device/bnc-ci.wrl -%%INSTDIR%%/modules/packages3d/device/bnc.wings -%%INSTDIR%%/modules/packages3d/device/bnc.wrl -%%INSTDIR%%/modules/packages3d/device/bornier_2.wings -%%INSTDIR%%/modules/packages3d/device/bornier_2.wrl -%%INSTDIR%%/modules/packages3d/device/bornier_3.wings -%%INSTDIR%%/modules/packages3d/device/bornier_3.wrl -%%INSTDIR%%/modules/packages3d/device/bornier_4.wings -%%INSTDIR%%/modules/packages3d/device/bornier_4.wrl -%%INSTDIR%%/modules/packages3d/device/bornier_6.wings -%%INSTDIR%%/modules/packages3d/device/bornier_6.wrl -%%INSTDIR%%/modules/packages3d/device/douille_4mm(black).wings -%%INSTDIR%%/modules/packages3d/device/douille_4mm(black).wrl -%%INSTDIR%%/modules/packages3d/device/douille_4mm(green).wings -%%INSTDIR%%/modules/packages3d/device/douille_4mm(green).wrl -%%INSTDIR%%/modules/packages3d/device/douille_4mm(red).wings -%%INSTDIR%%/modules/packages3d/device/douille_4mm(red).wrl -%%INSTDIR%%/modules/packages3d/device/switch_push.wings -%%INSTDIR%%/modules/packages3d/device/switch_push.wrl -%%INSTDIR%%/modules/packages3d/device/transf_LL1538.wings -%%INSTDIR%%/modules/packages3d/device/transf_LL1538.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_10.wings -%%INSTDIR%%/modules/packages3d/dil/dil_10.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_14.wings -%%INSTDIR%%/modules/packages3d/dil/dil_14.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_16.wings -%%INSTDIR%%/modules/packages3d/dil/dil_16.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_18.wings -%%INSTDIR%%/modules/packages3d/dil/dil_18.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_20.wings -%%INSTDIR%%/modules/packages3d/dil/dil_20.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_22-w400.wings -%%INSTDIR%%/modules/packages3d/dil/dil_22-w400.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_22.wings -%%INSTDIR%%/modules/packages3d/dil/dil_22.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_24-w300.wings -%%INSTDIR%%/modules/packages3d/dil/dil_24-w300.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_24-w400.wings -%%INSTDIR%%/modules/packages3d/dil/dil_24-w400.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_24-w600.wings -%%INSTDIR%%/modules/packages3d/dil/dil_24-w600.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_28-w300.wings -%%INSTDIR%%/modules/packages3d/dil/dil_28-w300.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_28-w600.wings -%%INSTDIR%%/modules/packages3d/dil/dil_28-w600.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_32-w600.wings -%%INSTDIR%%/modules/packages3d/dil/dil_32-w600.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_40-w600.wings -%%INSTDIR%%/modules/packages3d/dil/dil_40-w600.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_48-w600.wings -%%INSTDIR%%/modules/packages3d/dil/dil_48-w600.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_6.wings -%%INSTDIR%%/modules/packages3d/dil/dil_6.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_64-w600.wings -%%INSTDIR%%/modules/packages3d/dil/dil_64-w600.wrl -%%INSTDIR%%/modules/packages3d/dil/dil_8.wings -%%INSTDIR%%/modules/packages3d/dil/dil_8.wrl -%%INSTDIR%%/modules/packages3d/dil/textool_40.wings -%%INSTDIR%%/modules/packages3d/dil/textool_40.wrl -%%INSTDIR%%/modules/packages3d/discret/#push_butt_shape1_blue.wings# -%%INSTDIR%%/modules/packages3d/discret/adjustable_rx2.wings -%%INSTDIR%%/modules/packages3d/discret/adjustable_rx2.wrl -%%INSTDIR%%/modules/packages3d/discret/adjustable_rx2v4.wings -%%INSTDIR%%/modules/packages3d/discret/adjustable_rx2v4.wrl -%%INSTDIR%%/modules/packages3d/discret/c_horiz_c1v7.wings -%%INSTDIR%%/modules/packages3d/discret/c_horiz_c1v7.wrl -%%INSTDIR%%/modules/packages3d/discret/c_horiz_c2v10.wings -%%INSTDIR%%/modules/packages3d/discret/c_horiz_c2v10.wrl -%%INSTDIR%%/modules/packages3d/discret/c_pol.wings -%%INSTDIR%%/modules/packages3d/discret/c_pol.wrl -%%INSTDIR%%/modules/packages3d/discret/c_vert_big.wings -%%INSTDIR%%/modules/packages3d/discret/c_vert_big.wrl -%%INSTDIR%%/modules/packages3d/discret/c_vert_c1v5.wings -%%INSTDIR%%/modules/packages3d/discret/c_vert_c1v5.wrl -%%INSTDIR%%/modules/packages3d/discret/c_vert_c1v7.wings -%%INSTDIR%%/modules/packages3d/discret/c_vert_c1v7.wrl -%%INSTDIR%%/modules/packages3d/discret/c_vert_c1v8.wrl -%%INSTDIR%%/modules/packages3d/discret/c_vert_c1v8l.wings -%%INSTDIR%%/modules/packages3d/discret/c_vert_c2v10.wings -%%INSTDIR%%/modules/packages3d/discret/c_vert_c2v10.wrl -%%INSTDIR%%/modules/packages3d/discret/capa_1_pas.wings -%%INSTDIR%%/modules/packages3d/discret/capa_1_pas.wrl -%%INSTDIR%%/modules/packages3d/discret/capa_2pas_5x5mm.wings -%%INSTDIR%%/modules/packages3d/discret/capa_2pas_5x5mm.wrl -%%INSTDIR%%/modules/packages3d/discret/crystal_hc18u_horizontal.wings -%%INSTDIR%%/modules/packages3d/discret/crystal_hc18u_horizontal.wrl -%%INSTDIR%%/modules/packages3d/discret/crystal_hc18u_vertical.wings -%%INSTDIR%%/modules/packages3d/discret/crystal_hc18u_vertical.wrl -%%INSTDIR%%/modules/packages3d/discret/diode.wings -%%INSTDIR%%/modules/packages3d/discret/diode.wrl -%%INSTDIR%%/modules/packages3d/discret/emi_filter.wings -%%INSTDIR%%/modules/packages3d/discret/emi_filter.wrl -%%INSTDIR%%/modules/packages3d/discret/inductorV.wings -%%INSTDIR%%/modules/packages3d/discret/inductorV.wrl -%%INSTDIR%%/modules/packages3d/discret/led3_vertical.wings -%%INSTDIR%%/modules/packages3d/discret/led5_vertical.wings -%%INSTDIR%%/modules/packages3d/discret/led5_vertical.wrl -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1.wings~ -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1_blue.wings -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1_blue.wrl -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1_green.wings -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1_green.wrl -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1_red.wings -%%INSTDIR%%/modules/packages3d/discret/push_butt_shape1_red.wrl -%%INSTDIR%%/modules/packages3d/discret/qmontre.wings -%%INSTDIR%%/modules/packages3d/discret/qmontre.wrl -%%INSTDIR%%/modules/packages3d/discret/r_pack8.wings -%%INSTDIR%%/modules/packages3d/discret/r_pack8.wrl -%%INSTDIR%%/modules/packages3d/discret/r_pack9.wings -%%INSTDIR%%/modules/packages3d/discret/r_pack9.wrl -%%INSTDIR%%/modules/packages3d/discret/resistor.wings -%%INSTDIR%%/modules/packages3d/discret/resistor.wrl -%%INSTDIR%%/modules/packages3d/discret/resistor1.wrl -%%INSTDIR%%/modules/packages3d/discret/resistor2.wrl -%%INSTDIR%%/modules/packages3d/discret/self26.wings -%%INSTDIR%%/modules/packages3d/discret/self26.wrl -%%INSTDIR%%/modules/packages3d/discret/to18.wings -%%INSTDIR%%/modules/packages3d/discret/to18.wrl -%%INSTDIR%%/modules/packages3d/discret/to220_horiz.wings -%%INSTDIR%%/modules/packages3d/discret/to220_horiz.wrl -%%INSTDIR%%/modules/packages3d/discret/to220_vert.wings -%%INSTDIR%%/modules/packages3d/discret/to220_vert.wrl -%%INSTDIR%%/modules/packages3d/discret/to221_horiz.wings -%%INSTDIR%%/modules/packages3d/discret/to3.wings -%%INSTDIR%%/modules/packages3d/discret/to3.wrl -%%INSTDIR%%/modules/packages3d/discret/to5.wings -%%INSTDIR%%/modules/packages3d/discret/to5.wrl -%%INSTDIR%%/modules/packages3d/discret/to98.wings -%%INSTDIR%%/modules/packages3d/discret/to98.wrl -%%INSTDIR%%/modules/packages3d/discret/verti_resistor.wings -%%INSTDIR%%/modules/packages3d/discret/verti_resistor.wrl -%%INSTDIR%%/modules/packages3d/divers/optoresistor_nls-32.wings -%%INSTDIR%%/modules/packages3d/divers/optoresistor_nls-32.wrl -%%INSTDIR%%/modules/packages3d/pga/pga120.wings -%%INSTDIR%%/modules/packages3d/pga/pga120.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pin_array_1x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pin_array_1x1.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_12x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_12x1.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_12x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_12x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_13x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_13x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_20x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_20x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_2x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_2x1.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_2x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_2x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_3x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_3x1.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_3x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_3x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_4x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_4x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_5x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_5x1.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_5x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_5x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_6x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_6x1.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_6x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_6x2.wrl -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_8x1.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_8x2.wings -%%INSTDIR%%/modules/packages3d/pin_array/pins_array_8x2.wrl -%%INSTDIR%%/modules/packages3d/smd/chip_cms.wings -%%INSTDIR%%/modules/packages3d/smd/chip_cms.wrl -%%INSTDIR%%/modules/packages3d/smd/chip_cms_4pins.wings -%%INSTDIR%%/modules/packages3d/smd/chip_cms_4pins.wrl -%%INSTDIR%%/modules/packages3d/smd/chip_cms_pol.wings -%%INSTDIR%%/modules/packages3d/smd/chip_cms_pol.wrl -%%INSTDIR%%/modules/packages3d/smd/chip_smd_pol_wide.wings -%%INSTDIR%%/modules/packages3d/smd/chip_smd_pol_wide.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_self.wings -%%INSTDIR%%/modules/packages3d/smd/cms_self.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_so10.wings -%%INSTDIR%%/modules/packages3d/smd/cms_so10.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_so14.wings -%%INSTDIR%%/modules/packages3d/smd/cms_so14.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_so16.wings -%%INSTDIR%%/modules/packages3d/smd/cms_so16.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_so20.wings -%%INSTDIR%%/modules/packages3d/smd/cms_so20.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_so8.wings -%%INSTDIR%%/modules/packages3d/smd/cms_so8.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_soj24.wings -%%INSTDIR%%/modules/packages3d/smd/cms_soj24.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_soj28.wings -%%INSTDIR%%/modules/packages3d/smd/cms_soj28.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_soj32.wings -%%INSTDIR%%/modules/packages3d/smd/cms_soj32.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_soj40.wings -%%INSTDIR%%/modules/packages3d/smd/cms_soj40.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_soj42.wings -%%INSTDIR%%/modules/packages3d/smd/cms_soj42.wrl -%%INSTDIR%%/modules/packages3d/smd/cms_sot23.wings -%%INSTDIR%%/modules/packages3d/smd/cms_sot23.wrl -%%INSTDIR%%/modules/packages3d/smd/conn20_smd.wings -%%INSTDIR%%/modules/packages3d/smd/conn20_smd.wrl -%%INSTDIR%%/modules/packages3d/smd/conn3_smd.wings -%%INSTDIR%%/modules/packages3d/smd/conn3_smd.wings~ -%%INSTDIR%%/modules/packages3d/smd/conn3_smd.wrl -%%INSTDIR%%/modules/packages3d/smd/conn5_smd.wings -%%INSTDIR%%/modules/packages3d/smd/conn5_smd.wrl -%%INSTDIR%%/modules/packages3d/smd/dpack_2.wings -%%INSTDIR%%/modules/packages3d/smd/dpack_2.wrl -%%INSTDIR%%/modules/packages3d/smd/dpack_3.wings -%%INSTDIR%%/modules/packages3d/smd/dpack_3.wrl -%%INSTDIR%%/modules/packages3d/smd/dpack_5.wings -%%INSTDIR%%/modules/packages3d/smd/dpack_5.wrl -%%INSTDIR%%/modules/packages3d/smd/generic_bga.wings -%%INSTDIR%%/modules/packages3d/smd/generic_bga.wrl -%%INSTDIR%%/modules/packages3d/smd/pqfp100.wings -%%INSTDIR%%/modules/packages3d/smd/pqfp100.wrl -%%INSTDIR%%/modules/packages3d/smd/pqfp160.wings -%%INSTDIR%%/modules/packages3d/smd/pqfp160.wrl -%%INSTDIR%%/modules/packages3d/smd/pqfp208.wings -%%INSTDIR%%/modules/packages3d/smd/pqfp208.wrl -%%INSTDIR%%/modules/packages3d/smd/self_cms_we-pd3.wings -%%INSTDIR%%/modules/packages3d/smd/self_cms_we-pd3.wrl -%%INSTDIR%%/modules/packages3d/smd/smd_fuse_socket.wings -%%INSTDIR%%/modules/packages3d/smd/smd_fuse_socket.wrl -%%INSTDIR%%/modules/packages3d/smd/tqfp32.wings -%%INSTDIR%%/modules/packages3d/smd/tqfp32.wrl -%%INSTDIR%%/modules/packages3d/smd/vqfp100.wings -%%INSTDIR%%/modules/packages3d/smd/vqfp100.wrl -%%INSTDIR%%/modules/packages3d/smd/vqfp44.wings -%%INSTDIR%%/modules/packages3d/smd/vqfp44.wrl -%%INSTDIR%%/modules/packages3d/smd/vqfp64.wings -%%INSTDIR%%/modules/packages3d/smd/vqfp64.wrl -%%INSTDIR%%/modules/packages3d/smd/vsop56.wings -%%INSTDIR%%/modules/packages3d/smd/vsop56.wrl -%%INSTDIR%%/modules/packages3d/support/supp_pga120.wings -%%INSTDIR%%/modules/packages3d/support/supp_pga120.wrl -%%INSTDIR%%/modules/packages3d/support/supp_plcc68.wings -%%INSTDIR%%/modules/packages3d/support/supp_plcc68.wrl -%%INSTDIR%%/modules/packages3d/support/supp_plcc84.wings -%%INSTDIR%%/modules/packages3d/support/supp_plcc84.wrl -%%INSTDIR%%/modules/packages3d/support/support_so8_zif.wings -%%INSTDIR%%/modules/packages3d/support/support_so8_zif.wrl -%%INSTDIR%%/modules/packages3d/valves/ecc83.wings -%%INSTDIR%%/modules/packages3d/valves/ecc83.wrl -%%INSTDIR%%/modules/pin_array.brd -%%INSTDIR%%/modules/pin_array.mdc -%%INSTDIR%%/modules/pin_array.mod -%%INSTDIR%%/modules/smd_active.equ -%%INSTDIR%%/modules/smd_capa_0805.equ -%%INSTDIR%%/modules/smd_capa_1206.equ -%%INSTDIR%%/modules/smd_capa_pol.equ -%%INSTDIR%%/modules/smd_passive.equ -%%INSTDIR%%/modules/smd_resistor_0805.equ -%%INSTDIR%%/modules/smd_resistor_1206.equ -%%INSTDIR%%/modules/smd_trans-diodes.equ -%%INSTDIR%%/modules/sockets-part1.brd -%%INSTDIR%%/modules/sockets-part2.brd -%%INSTDIR%%/modules/standard-trans-diodes.equ -%%INSTDIR%%/modules/supports.mdc -%%INSTDIR%%/modules/supports.mod -%%INSTDIR%%/modules/valves.mdc -%%INSTDIR%%/modules/valves.mod -%%INSTDIR%%/news.txt -%%INSTDIR%%/template/kicad.pro -%%INSTDIR%%/template/kicad.pro~ -%%INSTDIR%%/tutorial/Kicad_Tutorial_en.odt -%%INSTDIR%%/tutorial/Kicad_Tutorial_ru.odt -%%INSTDIR%%/tutorial/Tutorial_Kicad_FR.odt -%%INSTDIR%%/version.txt -@dirrm %%INSTDIR%%/tutorial -@dirrm %%INSTDIR%%/template -@dirrm %%INSTDIR%%/modules/packages3d/valves -@dirrm %%INSTDIR%%/modules/packages3d/support -@dirrm %%INSTDIR%%/modules/packages3d/smd -@dirrm %%INSTDIR%%/modules/packages3d/pin_array -@dirrm %%INSTDIR%%/modules/packages3d/pga -@dirrm %%INSTDIR%%/modules/packages3d/divers -@dirrm %%INSTDIR%%/modules/packages3d/discret -@dirrm %%INSTDIR%%/modules/packages3d/dil -@dirrm %%INSTDIR%%/modules/packages3d/device -@dirrm %%INSTDIR%%/modules/packages3d/connectors -@dirrm %%INSTDIR%%/modules/packages3d/conn_europe -@dirrm %%INSTDIR%%/modules/packages3d/conn_DBxx -@dirrm %%INSTDIR%%/modules/packages3d -@dirrm %%INSTDIR%%/modules/docpackages -@dirrm %%INSTDIR%%/modules -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/xilinx/spartan3 -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/xilinx/spartan2e -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/xilinx/spartan2 -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/xilinx -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/xicor -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/video -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/transistors/mos -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/transistors/bipolar -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/transistors -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/that_corporation -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/texas/tms320lf240x -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/texas -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/temic -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/siliconix -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/regulator -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/philips -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/opto -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/op_amps -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/onsemi -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/ns -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/motorola -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/microchip -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/micrel -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/memory -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/maxim -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/linear-tec -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/ir -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/intersil -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/gennum -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/elantec -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/display -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/digital-audio -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/crystal -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/contrib -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/cmos4000 -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/analog_mux&switches -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/analog-dev -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/adc-dac -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc/74xx -%%PORTDOCS%%@dirrm %%INSTDIR%%/library/doc -@dirrm %%INSTDIR%%/library -@dirrm %%INSTDIR%%/internat/sl -@dirrm %%INSTDIR%%/internat/pt -@dirrm %%INSTDIR%%/internat/pl -@dirrm %%INSTDIR%%/internat/ko -@dirrm %%INSTDIR%%/internat/it -@dirrm %%INSTDIR%%/internat/hu -@dirrm %%INSTDIR%%/internat/fr -@dirrm %%INSTDIR%%/internat/es -@dirrm %%INSTDIR%%/internat/de -@dirrm %%INSTDIR%%/internat -@dirrm %%INSTDIR%%/help/ru/pcbnew -@dirrm %%INSTDIR%%/help/ru/kicad -@dirrm %%INSTDIR%%/help/ru/gerbview -@dirrm %%INSTDIR%%/help/ru/file_formats -@dirrm %%INSTDIR%%/help/ru/eeschema -@dirrm %%INSTDIR%%/help/ru/docs_src/pcbnew -@dirrm %%INSTDIR%%/help/ru/docs_src/kicad -@dirrm %%INSTDIR%%/help/ru/docs_src/eeschema -@dirrm %%INSTDIR%%/help/ru/docs_src -@dirrm %%INSTDIR%%/help/ru/cvpcb -@dirrm %%INSTDIR%%/help/ru -@dirrm %%INSTDIR%%/help/pt/pcbnew -@dirrm %%INSTDIR%%/help/pt/kicad -@dirrm %%INSTDIR%%/help/pt/gerbview -@dirrm %%INSTDIR%%/help/pt/file_formats -@dirrm %%INSTDIR%%/help/pt/eeschema -@dirrm %%INSTDIR%%/help/pt/docs_src/pcbnew -@dirrm %%INSTDIR%%/help/pt/docs_src/kicad -@dirrm %%INSTDIR%%/help/pt/docs_src/footprint-for-pcbnew-doc -@dirrm %%INSTDIR%%/help/pt/docs_src/file_formats -@dirrm %%INSTDIR%%/help/pt/docs_src/eeschema -@dirrm %%INSTDIR%%/help/pt/docs_src/cvpcb -@dirrm %%INSTDIR%%/help/pt/docs_src -@dirrm %%INSTDIR%%/help/pt/cvpcb -@dirrm %%INSTDIR%%/help/pt -@dirrm %%INSTDIR%%/help/it/docs_src/pcbnew -@dirrm %%INSTDIR%%/help/it/docs_src/eeschema -@dirrm %%INSTDIR%%/help/it/docs_src -@dirrm %%INSTDIR%%/help/it -@dirrm %%INSTDIR%%/help/fr/pcbnew -@dirrm %%INSTDIR%%/help/fr/kicad -@dirrm %%INSTDIR%%/help/fr/gerbview -@dirrm %%INSTDIR%%/help/fr/file_formats -@dirrm %%INSTDIR%%/help/fr/eeschema -@dirrm %%INSTDIR%%/help/fr/docs_src/pcbnew -@dirrm %%INSTDIR%%/help/fr/docs_src/kicad -@dirrm %%INSTDIR%%/help/fr/docs_src/gerbview -@dirrm %%INSTDIR%%/help/fr/docs_src/footprint-for-pcbnew-doc -@dirrm %%INSTDIR%%/help/fr/docs_src/file_formats -@dirrm %%INSTDIR%%/help/fr/docs_src/eeschema -@dirrm %%INSTDIR%%/help/fr/docs_src/cvpcb -@dirrm %%INSTDIR%%/help/fr/docs_src -@dirrm %%INSTDIR%%/help/fr/cvpcb -@dirrm %%INSTDIR%%/help/fr -@dirrm %%INSTDIR%%/help/es/pcbnew -@dirrm %%INSTDIR%%/help/es/kicad -@dirrm %%INSTDIR%%/help/es/gerbview -@dirrm %%INSTDIR%%/help/es/file_formats -@dirrm %%INSTDIR%%/help/es/eeschema -@dirrm %%INSTDIR%%/help/es/docs_src/pcbnew -@dirrm %%INSTDIR%%/help/es/docs_src/kicad -@dirrm %%INSTDIR%%/help/es/docs_src/file_format -@dirrm %%INSTDIR%%/help/es/docs_src/eeschema -@dirrm %%INSTDIR%%/help/es/docs_src/cvpcb -@dirrm %%INSTDIR%%/help/es/docs_src -@dirrm %%INSTDIR%%/help/es/cvpcb -@dirrm %%INSTDIR%%/help/es -@dirrm %%INSTDIR%%/help/en/pcbnew -@dirrm %%INSTDIR%%/help/en/kicad -@dirrm %%INSTDIR%%/help/en/gerbview -@dirrm %%INSTDIR%%/help/en/file_formats -@dirrm %%INSTDIR%%/help/en/eeschema -@dirrm %%INSTDIR%%/help/en/docs_src/pcbnew -@dirrm %%INSTDIR%%/help/en/docs_src/kicad -@dirrm %%INSTDIR%%/help/en/docs_src/gerbview -@dirrm %%INSTDIR%%/help/en/docs_src/file_formats -@dirrm %%INSTDIR%%/help/en/docs_src/eeschema -@dirrm %%INSTDIR%%/help/en/docs_src/cvpcb -@dirrm %%INSTDIR%%/help/en/docs_src -@dirrm %%INSTDIR%%/help/en/cvpcb -@dirrm %%INSTDIR%%/help/en -@dirrm %%INSTDIR%%/help/de/docs_src/eeschema -@dirrm %%INSTDIR%%/help/de/docs_src -@dirrm %%INSTDIR%%/help/de -@dirrm %%INSTDIR%%/help -@dirrm %%INSTDIR%%/demos/video -@dirrm %%INSTDIR%%/demos/test_xil_95108 -@dirrm %%INSTDIR%%/demos/sonde xilinx -@dirrm %%INSTDIR%%/demos/pspice -@dirrm %%INSTDIR%%/demos/pic_programmer -@dirrm %%INSTDIR%%/demos/microwave -@dirrm %%INSTDIR%%/demos/interf_u -@dirrm %%INSTDIR%%/demos/electric -@dirrm %%INSTDIR%%/demos/ecc83 -@dirrm %%INSTDIR%%/demos -@dirrm %%INSTDIR%%/%%OPSYS%%/plugins -@dirrm %%INSTDIR%%/%%OPSYS%% -@dirrm %%INSTDIR%% diff --git a/cad/linux-eagle5/Makefile b/cad/linux-eagle5/Makefile deleted file mode 100644 index 96d6402d28c1..000000000000 --- a/cad/linux-eagle5/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# New ports collection makefile for: linux-eagle -# Date created: 29 December 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= linux-eagle -EAGLEVERSION?= 4.16 -EAGLELANG?= eng -PORTVERSION= ${EAGLEVERSION:S/r/./} -PORTREVISION?= 1 -CATEGORIES?= cad linux -MASTER_SITES= ftp://ftp.cadsoft.de/pub/program/${EAGLEVERSION}/ -DISTNAME= ${PORTNAME:S/linux-//}-lin-${EAGLELANG}-${EAGLEVERSION} -EXTRACT_SUFX= .tgz - -MAINTAINER?= riggs@rrr.de -COMMENT?= An easy to use, yet powerful tool for designing printed circuit boards - -CONFLICTS?= de-linux-eagle-[0-9]* - -ONLY_FOR_ARCHS= i386 - -WRKSRC= ${WRKDIR}/${PORTNAME:S/linux-//}-lin-${EAGLELANG}-${EAGLEVERSION} -DATADIR= ${PREFIX}/share/${PORTNAME:S/linux-//} - -RESTRICTED= Usage permitted for non-commercial purposes only -NO_CDROM= Sale for profit is not permitted - -USE_LINUX= yes -USE_XLIB= yes -NO_BUILD= yes -PKGMESSAGE= ${WRKDIR}/pkg-message - -MAN1= eagle.1 - -CPIO?= /usr/bin/cpio --quiet -pdum -R - -do-install: - @${MKDIR} ${DATADIR} - @ cd ${WRKSRC} && ${FIND} * -type f -print | ${CPIO} ${BINOWN}:${BINGRP} ${DATADIR} - @ cd ${DATADIR} && ${FIND} * -type d -print | ${XARGS} ${CHMOD} 0755 - @${INSTALL_MAN} ${DATADIR}/man/eagle.1 ${PREFIX}/man/man1 - @${SED} -e "s:%%DATADIR%%:${DATADIR}:g" ${FILESDIR}/eagle.sh > ${PREFIX}/bin/eagle - @${CHMOD} 0555 ${PREFIX}/bin/eagle - -post-install: - @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" ${PKGDIR}/pkg-message > \ - ${PKGMESSAGE} -.if !defined(BATCH) - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.endif - -.include <bsd.port.mk> diff --git a/cad/linux-eagle5/distinfo b/cad/linux-eagle5/distinfo deleted file mode 100644 index 16b8117a9ef2..000000000000 --- a/cad/linux-eagle5/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (eagle-lin-eng-4.16.tgz) = 99843bdfa22503cad5ddc3b0dbbb0d2d -SHA256 (eagle-lin-eng-4.16.tgz) = 6e546223b9981d5e753f52d0104459dc9a89bf0fd5c19a30c7b12be56ad55225 -SIZE (eagle-lin-eng-4.16.tgz) = 8367197 diff --git a/cad/linux-eagle5/files/eagle.sh b/cad/linux-eagle5/files/eagle.sh deleted file mode 100644 index 893690f14bdb..000000000000 --- a/cad/linux-eagle5/files/eagle.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -EAGLEBIN=%%DATADIR%%/bin/eagle - -$EAGLEBIN "$@" diff --git a/cad/linux-eagle5/pkg-descr b/cad/linux-eagle5/pkg-descr deleted file mode 100644 index 2845aafb052e..000000000000 --- a/cad/linux-eagle5/pkg-descr +++ /dev/null @@ -1,27 +0,0 @@ -The EAGLE Layout Editor is an easy to use, yet powerful tool for designing -printed circuit boards (PCBs). The name EAGLE is an acronym, which stands for -Easily Applicable Graphical Layout Editor. - -The program consists of three main modules: - -o Layout Editor -o Schematic Editor -o Autorouter - -which are embedded in a single user interface. Therefore there is no need for -converting netlists between schematics and layouts. - -This is a Light Freeware Edition. It has the following limitations: - -o The useable board area is limited to 100 x 80 mm (4 x 3.2 inches). -o Only two signal layers can be used (Top and Bottom). -o The schematic editor can only create one sheet. -o Support is only available via email or through our forum (no fax or phone - support). -o Use is limited to non-profit applications or evaluation purposes. - -Apart from these limitiations the EAGLE Light Edition can do anything the -Professional Edition can do. You can even load, view and print drawings that -exceed these limits! - -WWW: http://www.cadsoftusa.com diff --git a/cad/linux-eagle5/pkg-message b/cad/linux-eagle5/pkg-message deleted file mode 100644 index f75da4463604..000000000000 --- a/cad/linux-eagle5/pkg-message +++ /dev/null @@ -1,6 +0,0 @@ -Eagle needs to be run as "root" first, in order to have write access -to %%PREFIX%%/share/eagle to write a program key file. - -Once this has been done, you can delete the "eagle" directory in your -/root directory, which is created during the initially startup, and -run it as a normal user. diff --git a/cad/linux-eagle5/pkg-plist b/cad/linux-eagle5/pkg-plist deleted file mode 100644 index ca257aa24768..000000000000 --- a/cad/linux-eagle5/pkg-plist +++ /dev/null @@ -1,732 +0,0 @@ -bin/eagle -share/eagle/README -share/eagle/bin/eagle -share/eagle/bin/eagle.def -share/eagle/bin/eagle.xpm -share/eagle/bin/freeware.key -share/eagle/cam/DESCRIPTION -share/eagle/cam/excellon.cam -share/eagle/cam/gerb274x.cam -share/eagle/cam/gerber.cam -share/eagle/cam/glaser.whl -share/eagle/cam/layout2.cam -share/eagle/cam/schematic.cam -share/eagle/doc/UPDATE -share/eagle/doc/library.txt -share/eagle/dru/DESCRIPTION -share/eagle/dru/default.dru -share/eagle/help/1.htm -share/eagle/help/10.htm -share/eagle/help/100.htm -share/eagle/help/101.htm -share/eagle/help/102.htm -share/eagle/help/103.htm -share/eagle/help/104.htm -share/eagle/help/105.htm -share/eagle/help/106.htm -share/eagle/help/107.htm -share/eagle/help/108.htm -share/eagle/help/109.htm -share/eagle/help/11.htm -share/eagle/help/110.htm -share/eagle/help/111.htm -share/eagle/help/112.htm -share/eagle/help/113.htm -share/eagle/help/114.htm -share/eagle/help/115.htm -share/eagle/help/116.htm -share/eagle/help/117.htm -share/eagle/help/118.htm -share/eagle/help/119.htm -share/eagle/help/12.htm -share/eagle/help/120.htm -share/eagle/help/121.htm -share/eagle/help/122.htm -share/eagle/help/123.htm -share/eagle/help/124.htm -share/eagle/help/125.htm -share/eagle/help/126.htm -share/eagle/help/127.htm -share/eagle/help/128.htm -share/eagle/help/129.htm -share/eagle/help/13.htm -share/eagle/help/130.htm -share/eagle/help/131.htm -share/eagle/help/132.htm -share/eagle/help/133.htm -share/eagle/help/134.htm -share/eagle/help/135.htm -share/eagle/help/136.htm -share/eagle/help/137.htm -share/eagle/help/138.htm -share/eagle/help/139.htm -share/eagle/help/14.htm -share/eagle/help/140.htm -share/eagle/help/141.htm -share/eagle/help/142.htm -share/eagle/help/143.htm -share/eagle/help/144.htm -share/eagle/help/145.htm -share/eagle/help/146.htm -share/eagle/help/147.htm -share/eagle/help/148.htm -share/eagle/help/149.htm -share/eagle/help/15.htm -share/eagle/help/150.htm -share/eagle/help/151.htm -share/eagle/help/152.htm -share/eagle/help/153.htm -share/eagle/help/154.htm -share/eagle/help/155.htm -share/eagle/help/156.htm -share/eagle/help/157.htm -share/eagle/help/158.htm -share/eagle/help/159.htm -share/eagle/help/16.htm -share/eagle/help/160.htm -share/eagle/help/161.htm -share/eagle/help/162.htm -share/eagle/help/163.htm -share/eagle/help/164.htm -share/eagle/help/165.htm -share/eagle/help/166.htm -share/eagle/help/167.htm -share/eagle/help/168.htm -share/eagle/help/169.htm -share/eagle/help/17.htm -share/eagle/help/170.htm -share/eagle/help/171.htm -share/eagle/help/172.htm -share/eagle/help/173.htm -share/eagle/help/174.htm -share/eagle/help/175.htm -share/eagle/help/176.htm -share/eagle/help/177.htm -share/eagle/help/178.htm -share/eagle/help/179.htm -share/eagle/help/18.htm -share/eagle/help/180.htm -share/eagle/help/181.htm -share/eagle/help/182.htm -share/eagle/help/183.htm -share/eagle/help/184.htm -share/eagle/help/185.htm -share/eagle/help/186.htm -share/eagle/help/187.htm -share/eagle/help/188.htm -share/eagle/help/189.htm -share/eagle/help/19.htm -share/eagle/help/190.htm -share/eagle/help/191.htm -share/eagle/help/192.htm -share/eagle/help/193.htm -share/eagle/help/194.htm -share/eagle/help/195.htm -share/eagle/help/196.htm -share/eagle/help/197.htm -share/eagle/help/198.htm -share/eagle/help/199.htm -share/eagle/help/2.htm -share/eagle/help/20.htm -share/eagle/help/200.htm -share/eagle/help/201.htm -share/eagle/help/202.htm -share/eagle/help/203.htm -share/eagle/help/204.htm -share/eagle/help/205.htm -share/eagle/help/206.htm -share/eagle/help/207.htm -share/eagle/help/208.htm -share/eagle/help/209.htm -share/eagle/help/21.htm -share/eagle/help/210.htm -share/eagle/help/211.htm -share/eagle/help/212.htm -share/eagle/help/213.htm -share/eagle/help/214.htm -share/eagle/help/215.htm -share/eagle/help/216.htm -share/eagle/help/217.htm -share/eagle/help/218.htm -share/eagle/help/219.htm -share/eagle/help/22.htm -share/eagle/help/220.htm -share/eagle/help/221.htm -share/eagle/help/222.htm -share/eagle/help/223.htm -share/eagle/help/224.htm -share/eagle/help/225.htm -share/eagle/help/226.htm -share/eagle/help/227.htm -share/eagle/help/228.htm -share/eagle/help/229.htm -share/eagle/help/23.htm -share/eagle/help/230.htm -share/eagle/help/231.htm -share/eagle/help/232.htm -share/eagle/help/233.htm -share/eagle/help/234.htm -share/eagle/help/235.htm -share/eagle/help/236.htm -share/eagle/help/237.htm -share/eagle/help/238.htm -share/eagle/help/239.htm -share/eagle/help/24.htm -share/eagle/help/240.htm -share/eagle/help/241.htm -share/eagle/help/242.htm -share/eagle/help/243.htm -share/eagle/help/244.htm -share/eagle/help/245.htm -share/eagle/help/246.htm -share/eagle/help/247.htm -share/eagle/help/248.htm -share/eagle/help/249.htm -share/eagle/help/25.htm -share/eagle/help/250.htm -share/eagle/help/251.htm -share/eagle/help/252.htm -share/eagle/help/253.htm -share/eagle/help/254.htm -share/eagle/help/255.htm -share/eagle/help/256.htm -share/eagle/help/257.htm -share/eagle/help/258.htm -share/eagle/help/259.htm -share/eagle/help/26.htm -share/eagle/help/260.htm -share/eagle/help/261.htm -share/eagle/help/262.htm -share/eagle/help/263.htm -share/eagle/help/264.htm -share/eagle/help/265.htm -share/eagle/help/266.htm -share/eagle/help/267.htm -share/eagle/help/268.htm -share/eagle/help/269.htm -share/eagle/help/27.htm -share/eagle/help/270.htm -share/eagle/help/271.htm -share/eagle/help/272.htm -share/eagle/help/273.htm -share/eagle/help/274.htm -share/eagle/help/275.htm -share/eagle/help/276.htm -share/eagle/help/277.htm -share/eagle/help/278.htm -share/eagle/help/279.htm -share/eagle/help/28.htm -share/eagle/help/280.htm -share/eagle/help/281.htm -share/eagle/help/282.htm -share/eagle/help/283.htm -share/eagle/help/284.htm -share/eagle/help/285.htm -share/eagle/help/286.htm -share/eagle/help/287.htm -share/eagle/help/288.htm -share/eagle/help/289.htm -share/eagle/help/29.htm -share/eagle/help/290.htm -share/eagle/help/291.htm -share/eagle/help/292.htm -share/eagle/help/293.htm -share/eagle/help/294.htm -share/eagle/help/295.htm -share/eagle/help/296.htm -share/eagle/help/297.htm -share/eagle/help/298.htm -share/eagle/help/299.htm -share/eagle/help/3.htm -share/eagle/help/30.htm -share/eagle/help/300.htm -share/eagle/help/301.htm -share/eagle/help/302.htm -share/eagle/help/303.htm -share/eagle/help/304.htm -share/eagle/help/305.htm -share/eagle/help/306.htm -share/eagle/help/307.htm -share/eagle/help/308.htm -share/eagle/help/309.htm -share/eagle/help/31.htm -share/eagle/help/310.htm -share/eagle/help/311.htm -share/eagle/help/312.htm -share/eagle/help/313.htm -share/eagle/help/314.htm -share/eagle/help/315.htm -share/eagle/help/316.htm -share/eagle/help/317.htm -share/eagle/help/318.htm -share/eagle/help/319.htm -share/eagle/help/32.htm -share/eagle/help/320.htm -share/eagle/help/321.htm -share/eagle/help/322.htm -share/eagle/help/323.htm -share/eagle/help/324.htm -share/eagle/help/325.htm -share/eagle/help/326.htm -share/eagle/help/327.htm -share/eagle/help/33.htm -share/eagle/help/34.htm -share/eagle/help/35.htm -share/eagle/help/36.htm -share/eagle/help/37.htm -share/eagle/help/38.htm -share/eagle/help/39.htm -share/eagle/help/4.htm -share/eagle/help/40.htm -share/eagle/help/41.htm -share/eagle/help/42.htm -share/eagle/help/43.htm -share/eagle/help/44.htm -share/eagle/help/45.htm -share/eagle/help/46.htm -share/eagle/help/47.htm -share/eagle/help/48.htm -share/eagle/help/49.htm -share/eagle/help/5.htm -share/eagle/help/50.htm -share/eagle/help/51.htm -share/eagle/help/52.htm -share/eagle/help/53.htm -share/eagle/help/54.htm -share/eagle/help/55.htm -share/eagle/help/56.htm -share/eagle/help/57.htm -share/eagle/help/58.htm -share/eagle/help/59.htm -share/eagle/help/6.htm -share/eagle/help/60.htm -share/eagle/help/61.htm -share/eagle/help/62.htm -share/eagle/help/63.htm -share/eagle/help/64.htm -share/eagle/help/65.htm -share/eagle/help/66.htm -share/eagle/help/67.htm -share/eagle/help/68.htm -share/eagle/help/69.htm -share/eagle/help/7.htm -share/eagle/help/70.htm -share/eagle/help/71.htm -share/eagle/help/72.htm -share/eagle/help/73.htm -share/eagle/help/74.htm -share/eagle/help/75.htm -share/eagle/help/76.htm -share/eagle/help/77.htm -share/eagle/help/78.htm -share/eagle/help/79.htm -share/eagle/help/8.htm -share/eagle/help/80.htm -share/eagle/help/81.htm -share/eagle/help/82.htm -share/eagle/help/83.htm -share/eagle/help/84.htm -share/eagle/help/85.htm -share/eagle/help/86.htm -share/eagle/help/87.htm -share/eagle/help/88.htm -share/eagle/help/89.htm -share/eagle/help/9.htm -share/eagle/help/90.htm -share/eagle/help/91.htm -share/eagle/help/92.htm -share/eagle/help/93.htm -share/eagle/help/94.htm -share/eagle/help/95.htm -share/eagle/help/96.htm -share/eagle/help/97.htm -share/eagle/help/98.htm -share/eagle/help/99.htm -share/eagle/help/index.htm -share/eagle/install -share/eagle/lbr/19inch.lbr -share/eagle/lbr/40xx.lbr -share/eagle/lbr/41xx.lbr -share/eagle/lbr/45xx.lbr -share/eagle/lbr/74ac-logic.lbr -share/eagle/lbr/74ttl-din.lbr -share/eagle/lbr/74xx-eu.lbr -share/eagle/lbr/74xx-us.lbr -share/eagle/lbr/751xx.lbr -share/eagle/lbr/DESCRIPTION -share/eagle/lbr/altera.lbr -share/eagle/lbr/am29-memory.lbr -share/eagle/lbr/amd-mach.lbr -share/eagle/lbr/analog-devices.lbr -share/eagle/lbr/ase.lbr -share/eagle/lbr/atmel.lbr -share/eagle/lbr/axis.lbr -share/eagle/lbr/battery.lbr -share/eagle/lbr/burr-brown.lbr -share/eagle/lbr/busbar.lbr -share/eagle/lbr/buzzer.lbr -share/eagle/lbr/c-trimm.lbr -share/eagle/lbr/california-micro-devices.lbr -share/eagle/lbr/capacitor-wima.lbr -share/eagle/lbr/chipcard-siemens.lbr -share/eagle/lbr/con-3m.lbr -share/eagle/lbr/con-amp-champ.lbr -share/eagle/lbr/con-amp-micromatch.lbr -share/eagle/lbr/con-amp-mt.lbr -share/eagle/lbr/con-amp-quick.lbr -share/eagle/lbr/con-amp.lbr -share/eagle/lbr/con-amphenol.lbr -share/eagle/lbr/con-berg.lbr -share/eagle/lbr/con-chipcard-iso7816.lbr -share/eagle/lbr/con-coax.lbr -share/eagle/lbr/con-commcon.lbr -share/eagle/lbr/con-conrad.lbr -share/eagle/lbr/con-deutsch.lbr -share/eagle/lbr/con-dil.lbr -share/eagle/lbr/con-erni.lbr -share/eagle/lbr/con-faston.lbr -share/eagle/lbr/con-friwo.lbr -share/eagle/lbr/con-harting-h.lbr -share/eagle/lbr/con-harting-ml.lbr -share/eagle/lbr/con-harting-v.lbr -share/eagle/lbr/con-harting.lbr -share/eagle/lbr/con-hirschmann.lbr -share/eagle/lbr/con-jack.lbr -share/eagle/lbr/con-jst.lbr -share/eagle/lbr/con-lsta.lbr -share/eagle/lbr/con-lstb.lbr -share/eagle/lbr/con-lumberg.lbr -share/eagle/lbr/con-molex.lbr -share/eagle/lbr/con-neutrik_ag.lbr -share/eagle/lbr/con-omron.lbr -share/eagle/lbr/con-panduit.lbr -share/eagle/lbr/con-pc.lbr -share/eagle/lbr/con-pc104.lbr -share/eagle/lbr/con-phoenix-254.lbr -share/eagle/lbr/con-phoenix-500.lbr -share/eagle/lbr/con-phoenix-508.lbr -share/eagle/lbr/con-ptr500.lbr -share/eagle/lbr/con-rib.lbr -share/eagle/lbr/con-shiua-chyuan.lbr -share/eagle/lbr/con-subd.lbr -share/eagle/lbr/con-thomas-betts.lbr -share/eagle/lbr/con-vg.lbr -share/eagle/lbr/con-wago-500.lbr -share/eagle/lbr/con-wago-508.lbr -share/eagle/lbr/con-wago.lbr -share/eagle/lbr/con-wago255.lbr -share/eagle/lbr/con-weidmueller-sl35.lbr -share/eagle/lbr/con-yamaichi.lbr -share/eagle/lbr/crystal.lbr -share/eagle/lbr/cypress.lbr -share/eagle/lbr/dc-dc-converter.lbr -share/eagle/lbr/diode.lbr -share/eagle/lbr/display-hp.lbr -share/eagle/lbr/display-lcd.lbr -share/eagle/lbr/ecl.lbr -share/eagle/lbr/etx-board.lbr -share/eagle/lbr/exar.lbr -share/eagle/lbr/fiber-optic-hp.lbr -share/eagle/lbr/fiber-optic-siemens.lbr -share/eagle/lbr/fifo.lbr -share/eagle/lbr/fox-electronics.lbr -share/eagle/lbr/frames.lbr -share/eagle/lbr/fuse.lbr -share/eagle/lbr/heatsink.lbr -share/eagle/lbr/holes.lbr -share/eagle/lbr/ic-package.lbr -share/eagle/lbr/inductor-coilcraft.lbr -share/eagle/lbr/inductor-neosid.lbr -share/eagle/lbr/inductors.lbr -share/eagle/lbr/infineon-tricore.lbr -share/eagle/lbr/infineon.lbr -share/eagle/lbr/isd.lbr -share/eagle/lbr/jumper.lbr -share/eagle/lbr/lattice.lbr -share/eagle/lbr/led.lbr -share/eagle/lbr/linear-technology.lbr -share/eagle/lbr/linear.lbr -share/eagle/lbr/marks.lbr -share/eagle/lbr/maxim.lbr -share/eagle/lbr/memory-hitachi.lbr -share/eagle/lbr/memory-idt.lbr -share/eagle/lbr/memory-motorola-dram.lbr -share/eagle/lbr/memory-nec.lbr -share/eagle/lbr/memory-samsung.lbr -share/eagle/lbr/memory-sram.lbr -share/eagle/lbr/memory.lbr -share/eagle/lbr/micro-fujitsu.lbr -share/eagle/lbr/micro-harris.lbr -share/eagle/lbr/micro-intel.lbr -share/eagle/lbr/micro-mc68000.lbr -share/eagle/lbr/micro-motorola.lbr -share/eagle/lbr/micro-philips.lbr -share/eagle/lbr/micro-samsung.lbr -share/eagle/lbr/micro-siemens.lbr -share/eagle/lbr/microchip.lbr -share/eagle/lbr/micronas.lbr -share/eagle/lbr/motorola-sensor-driver.lbr -share/eagle/lbr/murata-filter.lbr -share/eagle/lbr/nec-lqfp100-pack.lbr -share/eagle/lbr/opto-honeywell-3000.lbr -share/eagle/lbr/opto-honeywell-4000.lbr -share/eagle/lbr/opto-honeywell.lbr -share/eagle/lbr/opto-micro-linear.lbr -share/eagle/lbr/opto-trans-siemens.lbr -share/eagle/lbr/opto-transmittter-hp.lbr -share/eagle/lbr/opto-vishay.lbr -share/eagle/lbr/optocoupler.lbr -share/eagle/lbr/pal.lbr -share/eagle/lbr/piher.lbr -share/eagle/lbr/pinhead.lbr -share/eagle/lbr/plcc-socket.lbr -share/eagle/lbr/pld-intel.lbr -share/eagle/lbr/plxtech.lbr -share/eagle/lbr/pot-vitrohm.lbr -share/eagle/lbr/pot-xicor.lbr -share/eagle/lbr/pot.lbr -share/eagle/lbr/ptc-ntc.lbr -share/eagle/lbr/rcl.lbr -share/eagle/lbr/rectifier.lbr -share/eagle/lbr/ref-packages.lbr -share/eagle/lbr/relay.lbr -share/eagle/lbr/resistor-bourns.lbr -share/eagle/lbr/resistor-dil.lbr -share/eagle/lbr/resistor-net.lbr -share/eagle/lbr/resistor-power.lbr -share/eagle/lbr/resistor-ruf.lbr -share/eagle/lbr/resistor-shunt.lbr -share/eagle/lbr/resistor-sil.lbr -share/eagle/lbr/rf-micro-devices.lbr -share/eagle/lbr/semicon-smd-ipc.lbr -share/eagle/lbr/sensor-heraeus.lbr -share/eagle/lbr/silabs.lbr -share/eagle/lbr/smd-ipc.lbr -share/eagle/lbr/smd-special.lbr -share/eagle/lbr/solpad.lbr -share/eagle/lbr/special-pad.lbr -share/eagle/lbr/special.lbr -share/eagle/lbr/st-microelectronics.lbr -share/eagle/lbr/supply1.lbr -share/eagle/lbr/supply2.lbr -share/eagle/lbr/switch-dil.lbr -share/eagle/lbr/switch-misc.lbr -share/eagle/lbr/switch-omron.lbr -share/eagle/lbr/switch.lbr -share/eagle/lbr/telcom.lbr -share/eagle/lbr/telefunken.lbr -share/eagle/lbr/testpad.lbr -share/eagle/lbr/texas.lbr -share/eagle/lbr/toshiba.lbr -share/eagle/lbr/trafo-siemens.lbr -share/eagle/lbr/trafo-xicon.lbr -share/eagle/lbr/trafo.lbr -share/eagle/lbr/transistor-fet.lbr -share/eagle/lbr/transistor-npn.lbr -share/eagle/lbr/transistor-pnp.lbr -share/eagle/lbr/transistor-power.lbr -share/eagle/lbr/transistor-small-signal.lbr -share/eagle/lbr/transistor.lbr -share/eagle/lbr/triac.lbr -share/eagle/lbr/tripas.lbr -share/eagle/lbr/uln-udn.lbr -share/eagle/lbr/v-reg-micrel.lbr -share/eagle/lbr/v-reg.lbr -share/eagle/lbr/varistor.lbr -share/eagle/lbr/wafer-scale-psd.lbr -share/eagle/lbr/wirepad.lbr -share/eagle/lbr/wuerth-elektronik.lbr -share/eagle/lbr/zetex.lbr -share/eagle/lbr/zilog.lbr -share/eagle/man/eagle.1 -share/eagle/projects/DESCRIPTION -share/eagle/projects/examples/DESCRIPTION -share/eagle/projects/examples/hexapod/DESCRIPTION -share/eagle/projects/examples/hexapod/eagle.epf -share/eagle/projects/examples/hexapod/hexapod.brd -share/eagle/projects/examples/hexapod/hexapod.sch -share/eagle/projects/examples/singlesided/DESCRIPTION -share/eagle/projects/examples/singlesided/eagle.epf -share/eagle/projects/examples/singlesided/singlesided.brd -share/eagle/projects/examples/singlesided/singlesided.sch -share/eagle/projects/examples/singlesided/singlesided_h.ctl -share/eagle/projects/examples/singlesided/singlesided_v.ctl -share/eagle/projects/examples/tutorial/DESCRIPTION -share/eagle/projects/examples/tutorial/bus.sch -share/eagle/projects/examples/tutorial/demo1.sch -share/eagle/projects/examples/tutorial/demo2.brd -share/eagle/projects/examples/tutorial/demo2.sch -share/eagle/projects/examples/tutorial/demo3.brd -share/eagle/projects/examples/tutorial/demo3.sch -share/eagle/projects/examples/tutorial/hexapodu.brd -share/eagle/projects/examples/tutorial/hexapodu.ctl -share/eagle/scr/DESCRIPTION -share/eagle/scr/eagle.scr -share/eagle/scr/eagleassign.scr -share/eagle/scr/euro.scr -share/eagle/scr/fill.scr -share/eagle/scr/menu.scr -share/eagle/scr/mylayers.scr -share/eagle/scr/nofill.scr -share/eagle/ulp/DESCRIPTION -share/eagle/ulp/HyperLynx-4_11.ulp -share/eagle/ulp/bom.ulp -share/eagle/ulp/cam2dxf.ulp -share/eagle/ulp/cam2image.ulp -share/eagle/ulp/cam2print-box-grey-optimize.bmp -share/eagle/ulp/cam2print-box-grey-poscoord.bmp -share/eagle/ulp/cam2print-box-grey-quickplot.bmp -share/eagle/ulp/cam2print.ulp -share/eagle/ulp/change-pad-in-lbr-1.bmp -share/eagle/ulp/change-pad-in-lbr-x.bmp -share/eagle/ulp/change-pad-in-lbr.ulp -share/eagle/ulp/clear-layer-in-lbr.ulp -share/eagle/ulp/cmd-change-brd-width.ulp -share/eagle/ulp/cmd-change-class.ulp -share/eagle/ulp/cmd-change-swap-layer.ulp -share/eagle/ulp/cmd-net-list2sch.ulp -share/eagle/ulp/cmd-netscript2sch.ulp -share/eagle/ulp/cmd-place-restrict-name-value.ulp -share/eagle/ulp/cmd-rename-in-lbr.ulp -share/eagle/ulp/cmd-renumber.ulp -share/eagle/ulp/cmd-showzoom.ulp -share/eagle/ulp/cmd-snap-board.ulp -share/eagle/ulp/cmd-snappads.ulp -share/eagle/ulp/copy-silk-screen.ulp -share/eagle/ulp/copy-wire-to-solder-mask.ulp -share/eagle/ulp/count.ulp -share/eagle/ulp/del-devices.ulp -share/eagle/ulp/del-empty-devices.ulp -share/eagle/ulp/del-pack-sym.ulp -share/eagle/ulp/dif40.ulp -share/eagle/ulp/dose-pro.ulp -share/eagle/ulp/drill-aid.ulp -share/eagle/ulp/drill-legend.ulp -share/eagle/ulp/drillcfg.ulp -share/eagle/ulp/dxf.ulp -share/eagle/ulp/eagle.bmp -share/eagle/ulp/edit-used-dev-pac-sym.ulp -share/eagle/ulp/editnext-dev-sym-pac.ulp -share/eagle/ulp/editnext-lbr.ulp -share/eagle/ulp/editnext-sheet.ulp -share/eagle/ulp/editprev-dev-sym-pac.ulp -share/eagle/ulp/editprev-lbr.ulp -share/eagle/ulp/editprev-sheet.ulp -share/eagle/ulp/ex-argv-path.ulp -share/eagle/ulp/ex-dialogs.ulp -share/eagle/ulp/ex-dlglist.ulp -share/eagle/ulp/ex-file-copy.ulp -share/eagle/ulp/ex-include.ulp -share/eagle/ulp/ex-input-file.ulp -share/eagle/ulp/ex-loop-lbrs.ulp -share/eagle/ulp/ex-run-script.ulp -share/eagle/ulp/exp-descr-html.ulp -share/eagle/ulp/exp-descr-script.ulp -share/eagle/ulp/exp-project-lbr.ulp -share/eagle/ulp/exp2image.ulp -share/eagle/ulp/export-class.ulp -share/eagle/ulp/fabmaster.ulp -share/eagle/ulp/fill-via4vacuum.ulp -share/eagle/ulp/find.ulp -share/eagle/ulp/gluemark.ulp -share/eagle/ulp/glueout.ulp -share/eagle/ulp/import-bmp-c16.bmp -share/eagle/ulp/import-bmp-c2.bmp -share/eagle/ulp/import-bmp-c256-0.bmp -share/eagle/ulp/import-bmp-c256-1.bmp -share/eagle/ulp/import-bmp-c256-2.bmp -share/eagle/ulp/import-bmp-c256-3.bmp -share/eagle/ulp/import-bmp-c256-4.bmp -share/eagle/ulp/import-bmp-c256-5.bmp -share/eagle/ulp/import-bmp-c256-6.bmp -share/eagle/ulp/import-bmp-c256-7.bmp -share/eagle/ulp/import-bmp-c256.bmp -share/eagle/ulp/import-bmp-dpi.bmp -share/eagle/ulp/import-bmp-ratio.bmp -share/eagle/ulp/import-bmp-scale.bmp -share/eagle/ulp/import-bmp.ulp -share/eagle/ulp/import-ultiboard-ddf.ulp -share/eagle/ulp/length-freq-ri.ulp -share/eagle/ulp/length.ulp -share/eagle/ulp/make_bga_package.bmp -share/eagle/ulp/make_package_dual.bmp -share/eagle/ulp/make_package_meass_pacinfo.bmp -share/eagle/ulp/make_package_meass_padinfo.bmp -share/eagle/ulp/make_package_quad_left.bmp -share/eagle/ulp/make_package_quad_middle.bmp -share/eagle/ulp/make-symbol-device-package-bsdl.ulp -share/eagle/ulp/make_symbol_dual1.bmp -share/eagle/ulp/make_symbol_dual2.bmp -share/eagle/ulp/make_symbol_quad.bmp -share/eagle/ulp/make_symbol_single.bmp -share/eagle/ulp/microstrip-radial-stub.bmp -share/eagle/ulp/microstrip-radial-stub.ulp -share/eagle/ulp/mill-outlines-bott.bmp -share/eagle/ulp/mill-outlines-cnc.bmp -share/eagle/ulp/mill-outlines-coppdim.bmp -share/eagle/ulp/mill-outlines-drc-info.bmp -share/eagle/ulp/mill-outlines-drill.bmp -share/eagle/ulp/mill-outlines-eagle.bmp -share/eagle/ulp/mill-outlines-free.bmp -share/eagle/ulp/mill-outlines-hole.bmp -share/eagle/ulp/mill-outlines-hpgl.bmp -share/eagle/ulp/mill-outlines-isol-pour.bmp -share/eagle/ulp/mill-outlines-mildimension.bmp -share/eagle/ulp/mill-outlines-mirror.bmp -share/eagle/ulp/mill-outlines-no-blowup.bmp -share/eagle/ulp/mill-outlines-nomir.bmp -share/eagle/ulp/mill-outlines-null_reference.bmp -share/eagle/ulp/mill-outlines-ovrlpfp.bmp -share/eagle/ulp/mill-outlines-ovrlppp.bmp -share/eagle/ulp/mill-outlines-pour.bmp -share/eagle/ulp/mill-outlines-script.bmp -share/eagle/ulp/mill-outlines-sec-isolate.bmp -share/eagle/ulp/mill-outlines-spacing.bmp -share/eagle/ulp/mill-outlines-top.bmp -share/eagle/ulp/mill-outlines-via.bmp -share/eagle/ulp/mill-outlines.ulp -share/eagle/ulp/mount.ulp -share/eagle/ulp/mountsmd.ulp -share/eagle/ulp/nextdevdescript.ulp -share/eagle/ulp/nextpacdescript.ulp -share/eagle/ulp/outlines.ulp -share/eagle/ulp/panelize.ulp -share/eagle/ulp/part2html.ulp -share/eagle/ulp/prevdevdescript.ulp -share/eagle/ulp/prevpacdescript.ulp -share/eagle/ulp/remove-dev-sym-pac.ulp -share/eagle/ulp/renumber-sch.ulp -share/eagle/ulp/run-loop-all-lbr-script.ulp -share/eagle/ulp/run-loop-all-lbr-ulp.ulp -share/eagle/ulp/set_name_value.ulp -share/eagle/ulp/silk.ulp -share/eagle/ulp/smash-all-sch.ulp -share/eagle/ulp/smd-coordinate.ulp -share/eagle/ulp/snap-on-grid-sch.ulp -share/eagle/ulp/snap-pin-in-symbol.ulp -share/eagle/ulp/statistic-brd-checkmin.val -share/eagle/ulp/statistic-brd.ulp -share/eagle/ulp/statistic-lbr.ulp -share/eagle/ulp/statistic_attention_min_value.bmp -share/eagle/ulp/ulpmessage.ulp -share/eagle/ulp/unidat-fiducials.ulp -share/eagle/ulp/unidat.ulp -share/eagle/ulp/update-packages.ulp -share/eagle/ulp/useful-routines.ulp -share/eagle/ulp/warning.bmp -@unexec rm -f %D/share/eagle/bin/eagle.key || true -@dirrm share/eagle/ulp -@dirrm share/eagle/scr -@dirrm share/eagle/projects/examples/tutorial -@dirrm share/eagle/projects/examples/singlesided -@dirrm share/eagle/projects/examples/hexapod -@dirrm share/eagle/projects/examples -@dirrm share/eagle/projects -@dirrm share/eagle/man -@dirrm share/eagle/lbr -@dirrm share/eagle/help -@dirrm share/eagle/dru -@dirrm share/eagle/doc -@dirrm share/eagle/cam -@dirrm share/eagle/bin -@dirrm share/eagle |