From owner-svn-ports-all@FreeBSD.ORG Tue Sep 24 08:15:03 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 03005343; Tue, 24 Sep 2013 08:15:03 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward1l.mail.yandex.net (forward1l.mail.yandex.net [IPv6:2a02:6b8:0:1819::1]) by mx1.freebsd.org (Postfix) with ESMTP id 852D829FE; Tue, 24 Sep 2013 08:15:02 +0000 (UTC) Received: from smtp4h.mail.yandex.net (smtp4h.mail.yandex.net [84.201.186.21]) by forward1l.mail.yandex.net (Yandex) with ESMTP id DC7031520D01; Tue, 24 Sep 2013 12:14:59 +0400 (MSK) Received: from smtp4h.mail.yandex.net (localhost [127.0.0.1]) by smtp4h.mail.yandex.net (Yandex) with ESMTP id 1BE8F2C19A7; Tue, 24 Sep 2013 12:14:58 +0400 (MSK) Received: from 46.38.32.182.tel.ru (46.38.32.182.tel.ru [46.38.32.182]) by smtp4h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id iJPqyyKN8i-EwdidjDS; Tue, 24 Sep 2013 12:14:58 +0400 Message-ID: <52414A02.7000900@passap.ru> Date: Tue, 24 Sep 2013 12:14:58 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130806 Thunderbird/17.0.7 MIME-Version: 1.0 To: Alexey Dokuchaev Subject: Re: svn commit: r327791 - in head/graphics/eos-movrec: . files References: <201309210613.r8L6Dcqf092555@svn.freebsd.org> <20130923055820.GA62466@FreeBSD.org> <20130923064949.GA79560@FreeBSD.org> In-Reply-To: <20130923064949.GA79560@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------090105040308010107030601" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Rusmir Dusko , "'ports-committers@FreeBSD.org'" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 08:15:03 -0000 This is a multi-part message in MIME format. --------------090105040308010107030601 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 23.09.2013 10:49, Alexey Dokuchaev пишет: > On Mon, Sep 23, 2013 at 05:58:20AM +0000, Alexey Dokuchaev wrote: >> When I first ported this nice little program, it was simple GUI application >> (hence USE_QT4=gui only). Now with what looks like minor version update, >> it pulls in the whole Qt framework with everything including qt3support and >> webkit. >> >> Can you elaborate what happened to an utility for capturing short movies >> from a camera that it started to require webkit, designer, phonon, etc.? >> Did the author go insane? Broken prebuild checks? Can this shit be made >> optional at least? > > I've just checked on my tindy, it builds fine with my original USE_QT4 > value. OK, it's my fault, I've committed not paying adequate attention at additions to my patch. Return me my pointyhat and no cookies at Sunday. ;-) Rusmir, can you test/approve/commit the following patch? I've just tested it for building/packaging. The patch restores the staus-quo for USE_QT4 and allows using the stage phase. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve --------------090105040308010107030601 Content-Type: text/x-diff; name="eos-movrec.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="eos-movrec.diff" Index: /poudriere/ports/default/graphics/eos-movrec/Makefile =================================================================== --- /poudriere/ports/default/graphics/eos-movrec/Makefile (revision 328026) +++ /poudriere/ports/default/graphics/eos-movrec/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= eos-movrec DISTVERSION= 0.3.2_beta +PORTREVISION= 1 CATEGORIES= graphics multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ @@ -16,9 +17,7 @@ USE_BZIP2= yes USES= cmake pkgconfig USE_DOS2UNIX= *.pro *.cpp *.h -USE_QT4= corelib dbus declarative designer gui help iconengines imageformats \ - moc_build multimedia network opengl phonon qmake_build qt3support \ - rcc_build script scripttools sql qt3support uic_build webkit xml xmlpatterns +USE_QT4= qmake_build moc_build rcc_build uic_build gui INSTALLS_ICONS= yes ICON_SIZES= 16x16 32x32 128x128 256x256 512x512 @@ -26,7 +25,6 @@ DESKTOP_ENTRIES="EOS Camera Movie Recorder" "${COMMENT}" "${PORTNAME}" \ "eos_movrec" "Graphics;Photography;Qt;" false -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|GLIBC|${OPSYS}|' ${WRKSRC}/os_api.h .for s in 16 32 128 256 512 @@ -36,10 +34,10 @@ post-install: .for s in ${ICON_SIZES} - @${MKDIR} ${PREFIX}/share/icons/hicolor/${s}/apps + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps ${INSTALL_DATA} ${WRKSRC}/mac.icons/${PORTNAME}_${s}.png \ - ${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png + ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png .endfor - ${LN} -sf ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps/ + ${LN} -sf ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps/ .include --------------090105040308010107030601--