Bug 185040 - [PATCH] sysutils/grub2-bhyve: Remove dependency of gcc47 in favor of GCC>4.6
Summary: [PATCH] sysutils/grub2-bhyve: Remove dependency of gcc47 in favor of GCC>4.6
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: Kris Moore
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-20 17:40 UTC by Johannes Meixner
Modified: 2013-12-27 17:40 UTC (History)
1 user (show)

See Also:


Attachments
grub2-bhyve-0.21_1.patch (1.42 KB, patch)
2013-12-20 17:40 UTC, Johannes Meixner
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Johannes Meixner 2013-12-20 17:40:00 UTC
- Remove dependency of gcc47
- Add USE_GCC=4.6+
- Substitute one-entry pkg-plist with PLIST_FILES
- Cosmetic changes

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

Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-20 17:40:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->kmoore

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-12-27 17:33:21 UTC
Author: kmoore
Date: Fri Dec 27 17:33:11 2013
New Revision: 337760
URL: http://svnweb.freebsd.org/changeset/ports/337760

Log:
   - Cleanup the Makefile / pkg-plist
   - Switch to USE_GCC= 4.6+
  
  PR: 185040
  Submitted by: Johannes Jost Meixner <xmj@chaot.net>

Deleted:
  head/sysutils/grub2-bhyve/pkg-plist
Modified:
  head/sysutils/grub2-bhyve/Makefile

Modified: head/sysutils/grub2-bhyve/Makefile
==============================================================================
--- head/sysutils/grub2-bhyve/Makefile	Fri Dec 27 17:33:07 2013	(r337759)
+++ head/sysutils/grub2-bhyve/Makefile	Fri Dec 27 17:33:11 2013	(r337760)
@@ -3,26 +3,28 @@
 
 PORTNAME=	grub2-bhyve
 DISTVERSION=	0.21
+PORTREVISION=	1
 CATEGORIES=	sysutils
 
 MAINTAINER=	kmoore@FreeBSD.org
-COMMENT= 	Grub-emu loader for bhyve
+COMMENT=	Grub-emu loader for bhyve
 
 LICENSE=	GPLv3
 
 BUILD_DEPENDS=	${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
-		gcc47:${PORTSDIR}/lang/gcc47 \
 		help2man:${PORTSDIR}/misc/help2man
 
 ONLY_FOR_ARCHS=	amd64
 SSP_UNSAFE=	yes
+USE_GCC=	4.6+
 USE_GITHUB=	yes
 GH_ACCOUNT=	grehan-freebsd
 GH_COMMIT=	aa0717f
 GH_TAGNAME=	v0.2
 USES=		bison gettext gmake
+PLIST_FILES=	sbin/grub-bhyve
 MAKE_JOBS_UNSAFE=	yes
-CONFIGURE_ARGS=	--with-platform=emu CC=gcc47 LEX=${LOCALBASE}/bin/flex \
+CONFIGURE_ARGS=	--with-platform=emu CC=${CC} LEX=${LOCALBASE}/bin/flex \
 		--enable-grub-mount=no --enable-grub-mkfont=no
 
 .include <bsd.port.pre.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 Kris Moore freebsd_committer freebsd_triage 2013-12-27 17:33:51 UTC
State Changed
From-To: open->closed

Committed. Thanks!