svn commit: r339116 - in branches/2014Q1/sysutils/usrinfo: . files

Baptiste Daroussin bapt at FreeBSD.org
Wed Jan 8 13:11:33 UTC 2014


Author: bapt
Date: Wed Jan  8 13:11:32 2014
New Revision: 339116
URL: http://svnweb.freebsd.org/changeset/ports/339116

Log:
  MFH: r338897
  
  - Fix the build when g++ is not present.
  - Respect CXXFLAGS.
  - Unconditionally set MAINTAINER.
  - Set LICENSE.
  - Support staging.

Added:
  branches/2014Q1/sysutils/usrinfo/files/
     - copied from r338897, head/sysutils/usrinfo/files/
Modified:
  branches/2014Q1/sysutils/usrinfo/Makefile
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/sysutils/usrinfo/Makefile
==============================================================================
--- branches/2014Q1/sysutils/usrinfo/Makefile	Wed Jan  8 12:49:51 2014	(r339115)
+++ branches/2014Q1/sysutils/usrinfo/Makefile	Wed Jan  8 13:11:32 2014	(r339116)
@@ -6,19 +6,17 @@ PORTVERSION=	.10
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
-MAINTAINER?=	aaron at snaphat.com
+MAINTAINER=	aaron at snaphat.com
 COMMENT=	Displays information about a user using either "<br>" or "\n" breaks
 
-USE_BZIP2=	yes
+LICENSE=	BSD2CLAUSE
 
-PLIST_FILES=	bin/usrinfo
+USE_BZIP2=	yes
 
-MANCOMPRESSED=	no
-MAN1=		usrinfo.1
+PLIST_FILES=	bin/usrinfo man/man1/usrinfo.1.gz
 
-NO_STAGE=	yes
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/usrinfo ${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/man/usrinfo.1 ${MANPREFIX}/man/man1
+	${INSTALL_PROGRAM} ${WRKSRC}/usrinfo ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/man/usrinfo.1 ${STAGEDIR}${MANPREFIX}/man/man1
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list