Bug 187887 - [PATCH] net-im/yoono: Stage
Summary: [PATCH] net-im/yoono: Stage
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: Nicola Vitale
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-24 00:40 UTC by Johannes Meixner
Modified: 2014-03-31 00:00 UTC (History)
1 user (show)

See Also:


Attachments
yoono-1.8.43.patch (690 bytes, patch)
2014-03-24 00: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 2014-03-24 00:40:00 UTC
- Stagify

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

Generated with FreeBSD Port Tools 1.00.2014.03.22 (mode: change, diff: SVN)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-03-24 00:40:04 UTC
Responsible Changed
From-To: freebsd-ports-bugs->nivit

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-03-30 23:55:20 UTC
Author: nivit
Date: Sun Mar 30 22:55:15 2014
New Revision: 349693
URL: http://svnweb.freebsd.org/changeset/ports/349693
QAT: https://qat.redports.org/buildarchive/r349693/

Log:
  - Convert to USES, that handles tar archives
  - Add support for stage dir    [1]
  - Remove post-install-target
  
  PR:	ports/187887    [1]
  Submitted by:	Johannes Jost Meixner <xmj@chaot.net>

Modified:
  head/net-im/yoono/Makefile

Modified: head/net-im/yoono/Makefile
==============================================================================
--- head/net-im/yoono/Makefile	Sun Mar 30 22:39:10 2014	(r349692)
+++ head/net-im/yoono/Makefile	Sun Mar 30 22:55:15 2014	(r349693)
@@ -30,22 +30,18 @@ ONLY_FOR_ARCHS_REASON=	binary distributi
 SUB_FILES=	${PORTNAME} pkg-message
 SUB_LIST=	LINUXBASE=${LINUXBASE}
 
-USE_BZIP2=	yes
 USE_LDCONFIG=	yes
 USE_LINUX=	yes
 USE_LINUX_APPS=	alsalib dbuslibs gtk2 xorglibs
+USES=	tar:bzip2
 
 WRKSRC=	${WRKDIR}/${PORTNAME}-desktop
 
-NO_STAGE=	yes
 do-install:
-	${MKDIR} ${DATADIR}
-	cd ${WRKSRC} && \
-	${COPYTREE_SHARE} . ${DATADIR}
-	${CHMOD} ${BINMODE} ${DATADIR}/${PORTNAME}-desktop
-	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
-
-post-install:
-	@${CAT} ${PKGMESSAGE}
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	(cd ${WRKSRC} && \
+	${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR})
+	${CHMOD} ${BINMODE} ${STAGEDIR}${DATADIR}/${PORTNAME}-desktop
+	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
 
 .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 Nicola Vitale freebsd_committer freebsd_triage 2014-03-31 00:00:52 UTC
State Changed
From-To: open->closed

Committed, thanks!