Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Nov 2013 15:20:15 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332498 - head/x11-wm/clementine
Message-ID:  <201311021520.rA2FKF5D025493@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Sat Nov  2 15:20:14 2013
New Revision: 332498
URL: http://svnweb.freebsd.org/changeset/ports/332498

Log:
  - Add LICENSE
  - Respect CXX/CXXFLAGS
  - Convert to new options framework
  - Support staging
  
  While here:
  - Make COMMENT more descriptive
  - Use pkg-message instead of echo hacks
  
  PR:		ports/181071
  Submitted by:	KATO Tsuguru <tkato432@yahoo.com>

Added:
  head/x11-wm/clementine/pkg-message   (contents, props changed)
Modified:
  head/x11-wm/clementine/Makefile

Modified: head/x11-wm/clementine/Makefile
==============================================================================
--- head/x11-wm/clementine/Makefile	Sat Nov  2 15:20:14 2013	(r332497)
+++ head/x11-wm/clementine/Makefile	Sat Nov  2 15:20:14 2013	(r332498)
@@ -3,61 +3,57 @@
 
 PORTNAME=	clementine
 PORTVERSION=	0.0.7
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	x11-wm
 MASTER_SITES=	SF/${PORTNAME}/Source/${PORTNAME}-${PORTVERSION}
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Has title bars, iconizing, and styles (unstable)
+COMMENT=	Window manager based on aewm with title bars, iconization, and styles
+
+LICENSE=	GPLv2 MIT
+LICENSE_COMB=	multi
 
 RUN_DEPENDS=	xv:${PORTSDIR}/graphics/xv \
 		rxvt:${PORTSDIR}/x11/rxvt
 
-PLIST=		${WRKDIR}/pkg-plist
-PKGMESSAGE=	${WRKDIR}/pkg-message
-USE_GMAKE=	yes
+OPTIONS_DEFINE=	DOCS
+
+USES=		gmake
 USE_XORG=	x11
-DOCS=		COPYING HISTORY LICENSE
-REINPLACE_ARGS=	-i'' -E
 
-NO_STAGE=	yes
+PORTDOCS=	HISTORY LICENSE
+PLIST_FILES=	bin/clementine \
+		%%DATADIR%%/look-black \
+		%%DATADIR%%/look-black2 \
+		%%DATADIR%%/look-blue \
+		%%DATADIR%%/look-celadon \
+		%%DATADIR%%/look-grey \
+		%%DATADIR%%/look-taupe \
+		%%DATADIR%%/look-turq \
+		%%DATADIR%%/look-xemacs \
+		%%DATADIR%%/keys
+PLIST_DIRS=	%%DATADIR%%
+
 post-patch:
-	${REINPLACE_CMD} 's:^CFLAGS:IGNORE:g ; s:^DEFINES:IGNORE:g ;\
-		s:/usr/X11R6:${LOCALBASE}:g' \
+	@${REINPLACE_CMD} -e \
+		's|/usr/X11R6|${LOCALBASE}| ; \
+		 s|$$(CC)|$$(CXX)| ; \
+		 s|$$(CFLAGS)|$$(CXXFLAGS)| ; \
+		 s|$$(DEFINES)||' \
 		${WRKSRC}/Makefile
-	${REINPLACE_CMD} 's:./clementine:${PREFIX}/bin/clementine:g' \
+	@${REINPLACE_CMD} -e \
+		's|./clementine|${PREFIX}/bin/clementine|' \
 		${WRKSRC}/windowmanager.cpp
 
-pre-install:
-	${ECHO_CMD} bin/clementine > ${PLIST}
-	for i in `${LS} ${WRKSRC} | ${GREP} look-`; do \
-		${ECHO_CMD} share/clementine/$$i >> ${PLIST}; \
-	done
-	${ECHO_CMD} share/clementine/keys >> ${PLIST}
-.if !defined(NOPORTDOCS)
-.for i in ${DOCS}
-	${ECHO_CMD} share/doc/clementine/${i} >> ${PLIST}
-.endfor
-	${ECHO_CMD} @dirrm share/doc/clementine >> ${PLIST}
-.endif
-	${ECHO_CMD} @dirrm share/clementine >> ${PLIST}
-	${ECHO_CMD} "*" > ${PKGMESSAGE}
-	${ECHO_CMD} "* To customize clementine, copy the keys file to ~/keys and" >> ${PKGMESSAGE}
-	${ECHO_CMD} "* copy one of the look- files to ~/look; edit them as needed." >> ${PKGMESSAGE}
-	${ECHO_CMD} "*" >> ${PKGMESSAGE}
-
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/clementine ${PREFIX}/bin
-	${MKDIR} ${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/keys ${WRKSRC}/look-* ${DATADIR}
-.if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-.for i in ${DOCS}
-	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+	(cd ${WRKSRC} && ${INSTALL_PROGRAM} clementine ${STAGEDIR}${PREFIX}/bin)
+	@${MKDIR} ${STAGEDIR}${DATADIR}
+.for i in look-* keys
+	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DATADIR})
+.endfor
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+.for i in ${PORTDOCS}
+	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
 .endfor
-.endif
-
-post-install:
-	@${CAT} ${PKGMESSAGE}
 
 .include <bsd.port.mk>

Added: head/x11-wm/clementine/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/clementine/pkg-message	Sat Nov  2 15:20:14 2013	(r332498)
@@ -0,0 +1,4 @@
+*
+* To customize clementine, copy the keys file to ~/keys and
+* copy one of the look- files to ~/look; edit them as needed.
+*



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