Index: head/comms/quisk/Makefile =================================================================== --- head/comms/quisk/Makefile (revision 504515) +++ head/comms/quisk/Makefile (revision 504516) @@ -1,39 +1,39 @@ # Created by: Stephen Hurd # $FreeBSD$ PORTNAME= quisk DISTVERSION= 4.1.40 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= comms hamradio MASTER_SITES= CHEESESHOP MAINTAINER= hamradio@FreeBSD.org COMMENT= Software Defined Radio (SDR) LICENSE= GPLv2 BROKEN_i386= strip: elf_update() failed: Invalid data buffer descriptor (bug#238131) LIB_DEPENDS= libfftw3.so:math/fftw3 \ libportaudio.so:audio/portaudio \ libasound.so:audio/alsa-lib \ libpulse.so:audio/pulseaudio USES= python:2.7 USE_PYTHON= distutils noflavors autoplist USE_WX= 3.0+ WX_COMPS= python post-extract: @${RM} ${WRKSRC}/_quisk.so ${WRKSRC}/sdriqpkg/sdriq.so \ ${WRKSRC}/freedvpkg/libcodec2_32.so \ ${WRKSRC}/freedvpkg/libcodec2_64.so post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/setup.py post-stage: @${FIND} ${STAGEDIR}${PREFIX} -name "*.so" | ${XARGS} ${STRIP_CMD} .include Index: head/comms/quisk/files/patch-quisk__widgets.py =================================================================== --- head/comms/quisk/files/patch-quisk__widgets.py (revision 504515) +++ head/comms/quisk/files/patch-quisk__widgets.py (revision 504516) @@ -1,20 +1,19 @@ ---- quisk_widgets.py.orig 2019-06-19 06:35:39 UTC +--- quisk_widgets.py.orig 2019-05-28 12:22:59 UTC +++ quisk_widgets.py -@@ -248,7 +248,16 @@ class SliderBoxH: +@@ -248,7 +248,15 @@ class SliderBoxH: else: self.text_ctrl = wx.StaticText(parent, -1, t, pos=pos) w2, h2 = self.text_ctrl.GetSize() - self.slider = wx.Slider(parent, -1, init, themin, themax, (pos[0] + w2, pos[1]), (width - w2, h2)) + self.slider = wx.Slider(parent, -1, init, themin, themax) + w3, h3 = self.slider.GetSize() + p2 = pos[1] + if h3 > h2: + p2 -= (h3 - h2) / 2 -+ h2 = h3 + else: + p2 += (h2 - h3) / 2 -+ self.slider.SetSize((width - w2, h2)) ++ self.slider.SetSize((width - w2, h3)) + self.slider.SetPosition((pos[0] + w2, p2)) self.slider.Bind(wx.EVT_SCROLL, self.OnScroll) self.text_ctrl.SetForegroundColour(parent.GetForegroundColour()) self.OnScroll()