Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Sep 2014 02:40:24 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r367143 - head/x11-clocks/gdesklets-countdown
Message-ID:  <201409030240.s832eOoh023600@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Wed Sep  3 02:40:23 2014
New Revision: 367143
URL: http://svnweb.freebsd.org/changeset/ports/367143
QAT: https://qat.redports.org/buildarchive/r367143/

Log:
  Support STAGEDIR
  
  PR:		ports/193172
  Submitted by:	Ports Fury.

Modified:
  head/x11-clocks/gdesklets-countdown/Makefile

Modified: head/x11-clocks/gdesklets-countdown/Makefile
==============================================================================
--- head/x11-clocks/gdesklets-countdown/Makefile	Wed Sep  3 02:25:53 2014	(r367142)
+++ head/x11-clocks/gdesklets-countdown/Makefile	Wed Sep  3 02:40:23 2014	(r367143)
@@ -14,10 +14,11 @@ COMMENT=	Countdown the remaining time un
 
 RUN_DEPENDS=	gdesklets:${PORTSDIR}/deskutils/gdesklets
 
+NO_BUILD=	yes
+
 WRKSRC=		${WRKDIR}/juju-countdown
 
-NO_BUILD=	yes
-USE_PYTHON=	yes
+USES=		python
 
 SUB_FILES=	pkg-message
 SUB_LIST=	NAME="${NAME}"
@@ -25,21 +26,22 @@ SUB_LIST=	NAME="${NAME}"
 DATADIR=	${PREFIX}/share/gdesklets
 NAME=		Countdown
 
-NO_STAGE=	yes
 do-install:
-	@${MKDIR} ${DATADIR}/Displays/${NAME}
-	${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/Displays/${NAME}
-	${INSTALL_DATA} ${WRKSRC}/README ${DATADIR}/Displays/${NAME}
-	@${MKDIR} ${DATADIR}/Displays/${NAME}/gfx
-	${INSTALL_DATA} ${WRKSRC}/gfx/*.png ${DATADIR}/Displays/${NAME}/gfx
-	@${MKDIR} ${DATADIR}/Sensors/${NAME}
-	${INSTALL_DATA} ${WRKSRC}/Sensors/${NAME}/*.py ${DATADIR}/Sensors/${NAME}
-	@${MKDIR} ${DATADIR}/Sensors/LTVFontSelector
-	${INSTALL_DATA} ${WRKSRC}/Sensors/LTVFontSelector/*.py ${DATADIR}/Sensors/LTVFontSelector
-	@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/Sensors/${NAME}
-	@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/Sensors/${NAME}
-	@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/Sensors/LTVFontSelector
-	@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/Sensors/LTVFontSelector
-	@${CAT} ${PKGMESSAGE}
+	@${MKDIR} ${STAGEDIR}${DATADIR}/Displays/${NAME}
+	(cd ${WRKSRC} && ${INSTALL_DATA} README *.display \
+		${STAGEDIR}${DATADIR}/Displays/${NAME})
+	@${MKDIR} ${STAGEDIR}${DATADIR}/Displays/${NAME}/gfx
+	(cd ${WRKSRC}/gfx && ${INSTALL_DATA} *.png \
+		${STAGEDIR}${DATADIR}/Displays/${NAME}/gfx)
+	@${MKDIR} ${STAGEDIR}${DATADIR}/Sensors/${NAME}
+	(cd ${WRKSRC}/Sensors/${NAME} && ${INSTALL_DATA} *.py \
+		${STAGEDIR}${DATADIR}/Sensors/${NAME})
+	@${MKDIR} ${STAGEDIR}${DATADIR}/Sensors/LTVFontSelector
+	(cd ${WRKSRC}/Sensors/LTVFontSelector && ${INSTALL_DATA} *.py \
+		${STAGEDIR}${DATADIR}/Sensors/LTVFontSelector)
+	@(cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} -m compileall \
+		-d ${DATADIR} -f ${DATADIR_REL})
+	@(cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} -O -m compileall \
+		-d ${DATADIR} -f ${DATADIR_REL})
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409030240.s832eOoh023600>