Bug 174201 - www/aria2fe: Support CXXFLAGS properly
Summary: www/aria2fe: Support CXXFLAGS properly
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: Marcelo Araujo
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-05 18:10 UTC by tkato432
Modified: 2013-02-04 10:10 UTC (History)
0 users

See Also:


Attachments
file.diff (1.45 KB, patch)
2012-12-05 18:10 UTC, tkato432
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tkato432 2012-12-05 18:10:13 UTC
- Support CXXFLAGS properly
Comment 1 Marcelo Araujo freebsd_committer freebsd_triage 2012-12-11 11:20:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->araujo

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-02-04 10:04:20 UTC
Author: araujo
Date: Mon Feb  4 10:04:11 2013
New Revision: 311599
URL: http://svnweb.freebsd.org/changeset/ports/311599

Log:
  - Support CXXFLAGS properly.
  - Trim header.
  
  PR:		ports/174201
  Submitted by:	KATO Tsuguru <tkato432@yahoo.com>

Modified:
  head/www/aria2fe/Makefile   (contents, props changed)

Modified: head/www/aria2fe/Makefile
==============================================================================
--- head/www/aria2fe/Makefile	Mon Feb  4 10:03:15 2013	(r311598)
+++ head/www/aria2fe/Makefile	Mon Feb  4 10:04:11 2013	(r311599)
@@ -1,32 +1,33 @@
-# New ports collection makefile for:	aria2fe
-# Date created:		12 December 2007
-# Whom:			Andrew Pantyukhin <infofarmer@FreeBSD.org>
-#
+# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	aria2fe
 DISTVERSION=	0.0.5
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	www
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Aria2 QT front-end
+COMMENT=	Aria2 Qt front-end
+
+LICENSE=	GPLv3 # (or later)
 
 RUN_DEPENDS=	aria2c:${PORTSDIR}/www/aria2 \
 		xterm:${PORTSDIR}/x11/xterm
 
+BUILD_WRKSRC=	${WRKSRC}/src
+INSTALL_WRKSRC=	${WRKSRC}/bin
+
 USE_BZIP2=	yes
-USE_QT4=	gui qmake_build uic_build moc_build rcc_build
+USE_QT4=	gui moc_build qmake_build rcc_build uic_build
+MAKE_JOBS_SAFE=	yes
+
 PLIST_FILES=	bin/${PORTNAME}
-BUILD_WRKSRC=	${WRKSRC}/src
 
-pre-build:
-	@cd ${BUILD_WRKSRC}/&&\
-		${SETENV} ${MAKE_ENV} ${QMAKE} -unix ${PORTNAME}.pro
+do-configure:
+	@(cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} ${QMAKEFLAGS})
 
 do-install:
-	@${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin/
 
 .include <bsd.port.mk>
_______________________________________________
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 Marcelo Araujo freebsd_committer freebsd_triage 2013-02-04 10:04:22 UTC
State Changed
From-To: open->closed

Committed. Thanks!