Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Feb 2014 15:40:01 GMT
From:      =?UTF-8?B?5p6X5ZOy5oe3?= <timothy.lin1@gmail.com>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/182460: New port: multimedia/qwinff Qt4 media converter GUI
Message-ID:  <201402041540.s14Fe1FH056704@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/182460; it has been noted by GNATS.

From: =?UTF-8?B?5p6X5ZOy5oe3?= <timothy.lin1@gmail.com>
To: bug-followup@FreeBSD.org, lzh9102@gmail.com
Cc:  
Subject: Re: ports/182460: New port: multimedia/qwinff Qt4 media converter
 GUI
Date: Wed, 05 Feb 2014 10:37:43 -0500

 The problem is in qwinff-0.1.9/Makefile. When recursively call make,
 "$(MAKE)" should be used instead of "make".
 Fix:
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #    qwinff
 #    qwinff/files
 #    qwinff/files/patch-Makefile
 #    qwinff/Makefile
 #    qwinff/pkg-descr
 #    qwinff/pkg-plist
 #    qwinff/distinfo
 #
 echo c - qwinff
 mkdir -p qwinff > /dev/null 2>&1
 echo c - qwinff/files
 mkdir -p qwinff/files > /dev/null 2>&1
 echo x - qwinff/files/patch-Makefile
 sed 's/^X//' >qwinff/files/patch-Makefile <<
 '365342c9effe5a3ac7b078c4c6665d22'
 X--- Makefile.orig    2014-02-05 10:18:59.000000000 +0800
 X+++ Makefile    2014-02-05 10:16:51.000000000 +0800
 X@@ -3,7 +3,7 @@
 X # You can change these parameters to customize the build.
 X
 X # Installation Prefix
 X-PREFIX=/usr
 X+PREFIX?=/usr
 X # Version ID String (displayed after the version string in the about
 dialog)
 X VIDSTR=
 X
 X@@ -39,8 +39,10 @@
 X     QMAKE_DEFS += CONFIG+=libnotify
 X endif
 X
 X+all: release
 X+
 X release:
 X-    +cd $(SRC_DIR) && $(QMAKE) $(QMAKE_DEFS) qwinff.pro && $(DEFS) make
 X+    +cd $(SRC_DIR) && $(QMAKE) $(QMAKE_DEFS) qwinff.pro && $(DEFS) $(MAKE)
 X     -cd src && $(LRELEASE) qwinff.pro
 X
 X check:
 X@@ -49,7 +51,7 @@
 X clean:
 X     rm -rf $(BIN_DIR)/*
 X     rm -rf $(BUILD_DIR)/*
 X-    -cd $(SRC_DIR) && make clean && rm Makefile
 X+    -cd $(SRC_DIR) && $(MAKE) clean && rm Makefile
 X
 X install:
 X     -install -d $(DESTDIR)$(PREFIX)/bin/
 365342c9effe5a3ac7b078c4c6665d22
 echo x - qwinff/Makefile
 sed 's/^X//' >qwinff/Makefile << 'c08ba676b48ee0a32d696979ab1c3ae7'
 X# Created by: Che-Huai Lin <lzh9102@gmail.com>
 X# $FreeBSD$
 X
 XPORTNAME=    qwinff
 XPORTVERSION=    0.1.9
 XCATEGORIES=    multimedia audio kde
 XMASTER_SITES=    SF/${PORTNAME}/release/v${PORTVERSION}
 XDISTNAME= ${PORTNAME}_${PORTVERSION}
 X
 XMAINTAINER=    lzh9102@gmail.com
 XCOMMENT=    Graphical media converter based on FFmpeg and Qt4
 X
 XBUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf
 XRUN_DEPENDS=    ffmpeg:${PORTSDIR}/multimedia/ffmpeg \
 X        sox:${PORTSDIR}/audio/sox
 X
 XMAKE_ARGS+= QMAKE=qmake-qt4 LRELEASE=lrelease-qt4
 XUSE_QT4=    gui network dbus qmake_build moc_build rcc_build uic_build \
 X        linguist_build
 XUSE_BZIP2=    yes
 XUSE_GMAKE=    yes
 XINSTALLS_ICONS=    yes
 XWRKSRC=   ${WRKDIR}/${PORTNAME}-${PORTVERSION}
 X
 XMAN1=        qwinff.1
 XMANCOMPRESSED=    yes
 X
 XMAKE_JOBS_UNSAFE=    yes
 X
 X# options
 XOPTIONS_DEFINE= LIBNOTIFY
 XLIBNOTIFY_DESC= Send desktop notifications via libnotify
 X
 XOPTIONS_DEFAULT= LIBNOTIFY
 X
 X.include <bsd.port.options.mk>
 X
 X.if ${PORT_OPTIONS:MLIBNOTIFY}
 XLIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify
 XMAKE_ARGS+= USE_LIBNOTIFY=1
 X.endif
 X
 X.include <bsd.port.mk>
 c08ba676b48ee0a32d696979ab1c3ae7
 echo x - qwinff/pkg-descr
 sed 's/^X//' >qwinff/pkg-descr << '876adfa7a406951ee49fcb0740e2ba13'
 XQWinFF is a GUI for [FFmpeg](http://ffmpeg.org), a powerful media
 converter.
 XFFmpeg can read audio and video files in various formats and convert
 them into
 Xother formats. QWinFF features an intuitive graphical interface and a
 rich set
 Xof presets to help you convert media files within a few clicks.
 Advanced users
 Xcan also adjust conversion parameters in detail.
 X
 XWWW: http://qwinff.github.io
 876adfa7a406951ee49fcb0740e2ba13
 echo x - qwinff/pkg-plist
 sed 's/^X//' >qwinff/pkg-plist << 'e3f9d058d7047b6b5955aeb722dc7da2'
 Xbin/qwinff
 Xshare/applications/qwinff.desktop
 Xshare/pixmaps/qwinff.png
 X%%DATADIR%%/constants.xml
 X%%DATADIR%%/presets.xml
 X%%DATADIR%%/translations/qwinff_ar.qm  
 X%%DATADIR%%/translations/qwinff_cs_CZ.qm
 X%%DATADIR%%/translations/qwinff_de.qm  
 X%%DATADIR%%/translations/qwinff_es_ES.qm
 X%%DATADIR%%/translations/qwinff_es_GT.qm
 X%%DATADIR%%/translations/qwinff_it_IT.qm
 X%%DATADIR%%/translations/qwinff_ja_JP.qm
 X%%DATADIR%%/translations/qwinff_ro_RO.qm
 X%%DATADIR%%/translations/qwinff_ru.qm  
 X%%DATADIR%%/translations/qwinff_tr_TR.qm
 X%%DATADIR%%/translations/qwinff_zh_CN.qm
 X%%DATADIR%%/translations/qwinff_zh_TW.qm
 X@dirrm %%DATADIR%%/translations
 X@dirrmtry %%DATADIR%%
 X@dirrmtry share/pixmaps
 X@dirrmtry share/applications
 e3f9d058d7047b6b5955aeb722dc7da2
 echo x - qwinff/distinfo
 sed 's/^X//' >qwinff/distinfo << '4af759cf692112e66ebc43e314c8eec0'
 XSHA256 (qwinff_0.1.9.tar.bz2) =
 7f4fc35a13818bae796c8e25aeb7396c62f535ba79bde31c1641f862c455a6ed
 XSIZE (qwinff_0.1.9.tar.bz2) = 463148
 4af759cf692112e66ebc43e314c8eec0
 exit
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402041540.s14Fe1FH056704>