Summary: | [PATCH] multimedia/avidemux2: fix QT4 option handling | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Dmitry Marakasov <amdmi3> | ||||
Component: | Individual Port(s) | Assignee: | freebsd-multimedia (Nobody) <multimedia> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | multimedia | ||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Dmitry Marakasov
2014-01-30 16:40:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->freebsd-multimedia Over to maintainer (via the GNATS Auto Assign Tool) Author: nox Date: Thu Jan 30 20:58:42 2014 New Revision: 341886 URL: http://svnweb.freebsd.org/changeset/ports/341886 QAT: https://qat.redports.org/buildarchive/r341886/ Log: Fix QT4 option handling. PR: ports/186280 Submitted by: amdmi3 Modified: head/multimedia/avidemux2/Makefile.common Modified: head/multimedia/avidemux2/Makefile.common ============================================================================== --- head/multimedia/avidemux2/Makefile.common Thu Jan 30 20:57:05 2014 (r341885) +++ head/multimedia/avidemux2/Makefile.common Thu Jan 30 20:58:42 2014 (r341886) @@ -46,10 +46,10 @@ OPTIONS_DEFAULT+= LAME FAAC AMR .if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" -. if !defined(WITH_QT4) -PLIST_SUB+= QT_NLS="@comment " -. else +. if ${PORT_OPTIONS:MQT4} PLIST_SUB+= QT_NLS="" +. else +PLIST_SUB+= QT_NLS="@comment " . endif .else CMAKE_ARGS+= -DNO_NLS:BOOL=ON _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |