Bug 186280 - [PATCH] multimedia/avidemux2: fix QT4 option handling
Summary: [PATCH] multimedia/avidemux2: fix QT4 option handling
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-multimedia (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-30 16:40 UTC by Dmitry Marakasov
Modified: 2014-01-30 21:00 UTC (History)
1 user (show)

See Also:


Attachments
avidemux2-2.5.6_5.patch (441 bytes, patch)
2014-01-30 16:40 UTC, Dmitry Marakasov
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitry Marakasov 2014-01-30 16:40:00 UTC
- Fix leftover from pre-OPTIONSng era; as a result, this fixes plist in case of both NLS and QT4 enabled

Port maintainer (multimedia@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-30 16:40:09 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-multimedia

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-01-30 20:58:50 UTC
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"
Comment 3 Juergen Lock freebsd_committer freebsd_triage 2014-01-30 20:59:05 UTC
State Changed
From-To: open->closed

Committed. Thanks!