summaryrefslogtreecommitdiff
path: root/cad
diff options
context:
space:
mode:
authorbouyer <bouyer>2016-09-21 13:16:06 +0000
committerbouyer <bouyer>2016-09-21 13:16:06 +0000
commit5074d5c12c2c2987b488dac326d5413966fc8d53 (patch)
tree040f3eb030fb55210c61227915eda3e807e421f8 /cad
parent1e71a8c9ecc42d6102cf297b46ce9438fc3a2837 (diff)
downloadpkgsrc-5074d5c12c2c2987b488dac326d5413966fc8d53.tar.gz
Fix reversed assignement, pointed out by he@ (thanks !)
Diffstat (limited to 'cad')
-rw-r--r--cad/kicad/Makefile4
-rw-r--r--cad/kicad/distinfo4
-rw-r--r--cad/kicad/patches/patch-eeschema_sch_component.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/cad/kicad/Makefile b/cad/kicad/Makefile
index 67a2282120a..c9ded3d563f 100644
--- a/cad/kicad/Makefile
+++ b/cad/kicad/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.11 2016/09/08 09:32:28 bouyer Exp $
+# $NetBSD: Makefile,v 1.12 2016/09/21 13:16:06 bouyer Exp $
#
V= 4.0.4
DISTNAME= kicad-${V}
-#PKGREVISION= 1
+PKGREVISION= 1
CATEGORIES= cad
MASTER_SITES= https://launchpad.net/kicad/4.0/${V}/+download/
EXTRACT_SUFX= .tar.xz
diff --git a/cad/kicad/distinfo b/cad/kicad/distinfo
index 78b54a769bf..de8effbc393 100644
--- a/cad/kicad/distinfo
+++ b/cad/kicad/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2016/09/08 09:32:28 bouyer Exp $
+$NetBSD: distinfo,v 1.6 2016/09/21 13:16:06 bouyer Exp $
SHA1 (kicad-4.0.4.tar.xz) = d0a124218f91cd40958ca0d68f8fe1f36d368cc3
RMD160 (kicad-4.0.4.tar.xz) = 563b5168bd94b8c4a34f720fdb60e677c75f75fe
@@ -14,7 +14,7 @@ SHA1 (patch-common_richio.cpp) = 1e47e1ab5c2f0a2cee5b7bd20b47fc62930feda4
SHA1 (patch-common_tool_tool_manager.cpp) = 242a0755b7aff280e5eb2b423a546f1dc4fdea2c
SHA1 (patch-cvpcb_CMakeLists.txt) = 2eaa753054851efab680f402fbf808d78d84205a
SHA1 (patch-eeschema_CMakeLists.txt) = a6dec7f84f5854ccedc2cae5e8c290ea3d41bfa3
-SHA1 (patch-eeschema_sch_component.cpp) = 2c858779f6359e2baa1fb06e599c6085b85d9c2d
+SHA1 (patch-eeschema_sch_component.cpp) = 7b3363a917e408327061f313e7cce8f77f0977e8
SHA1 (patch-eeschema_sch_sheet.cpp) = 83dd03910b1a7f78f46d3fc591bf5ec2670f2ce4
SHA1 (patch-gerbview_CMakeLists.txt) = 817f7fa3f27e77e42d37e0df4fab1525cfb35053
SHA1 (patch-include-kicad_string.h) = 16f2db87cab7716171360220a6c41d9a8ee5b8d1
diff --git a/cad/kicad/patches/patch-eeschema_sch_component.cpp b/cad/kicad/patches/patch-eeschema_sch_component.cpp
index c03b2c4a033..0ea4da8975c 100644
--- a/cad/kicad/patches/patch-eeschema_sch_component.cpp
+++ b/cad/kicad/patches/patch-eeschema_sch_component.cpp
@@ -1,4 +1,4 @@
-$NetBSD: patch-eeschema_sch_component.cpp,v 1.3 2016/09/08 09:32:28 bouyer Exp $
+$NetBSD: patch-eeschema_sch_component.cpp,v 1.4 2016/09/21 13:16:07 bouyer Exp $
64bit time_t fix
Reported upstream as bug id 1280901
@@ -11,7 +11,7 @@ Reported upstream as bug id 1280901
- sscanf( line + 1, "%d %d %lX", &m_unit, &m_convert, &m_TimeStamp );
+ u_long tmstp;
+ sscanf( line + 1, "%d %d %lX", &m_unit, &m_convert, &tmstp );
-+ tmstp = m_TimeStamp;
++ m_TimeStamp = tmstp;
}
else if( line[0] == 'P' )
{