Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Oct 2013 21:46:25 +0000 (UTC)
From:      Carlo Strub <cs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330680 - head/textproc/scss
Message-ID:  <201310172146.r9HLkPXp064881@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cs
Date: Thu Oct 17 21:46:25 2013
New Revision: 330680
URL: http://svnweb.freebsd.org/changeset/ports/330680

Log:
  - Support stagedir
  - Remove leading article in COMMENT
  - Fix typo in pkg-descr

Modified:
  head/textproc/scss/Makefile
  head/textproc/scss/pkg-descr
  head/textproc/scss/pkg-plist

Modified: head/textproc/scss/Makefile
==============================================================================
--- head/textproc/scss/Makefile	Thu Oct 17 21:44:41 2013	(r330679)
+++ head/textproc/scss/Makefile	Thu Oct 17 21:46:25 2013	(r330680)
@@ -8,7 +8,7 @@ MASTER_SITES=	SAVANNAH \
 		http://www.c-s.li/ports/
 
 MAINTAINER=	cs@FreeBSD.org
-COMMENT=	A Scheme module for W3C Cascading Stylesheets recommendation
+COMMENT=	Scheme module for W3C Cascading Stylesheets recommendation
 
 LICENSE=	GPLv3
 
@@ -19,14 +19,11 @@ NO_BUILD=	yes
 FILES=	lexer.scm parser.scm scss.scm properties.scm \
 	interface/sdom.scm common.scm
 
-INFO=	scss
-
-NO_STAGE=	yes
 do-install:
-	@${MKDIR} ${PREFIX}/share/guile/scss
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/guile/scss
 .for f in ${FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/guile/scss
+	@${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/share/guile/scss
 .endfor
-	@${INSTALL_DATA} ${WRKSRC}/scss.info ${PREFIX}/info
+	@${INSTALL_DATA} ${WRKSRC}/scss.info ${STAGEDIR}${PREFIX}/info
 
 .include <bsd.port.mk>

Modified: head/textproc/scss/pkg-descr
==============================================================================
--- head/textproc/scss/pkg-descr	Thu Oct 17 21:44:41 2013	(r330679)
+++ head/textproc/scss/pkg-descr	Thu Oct 17 21:46:25 2013	(r330680)
@@ -2,7 +2,7 @@ SCSS is a Scheme module for parsing, que
 compatible with the W3C Cascading Stylesheets recommendation. While SCSS does
 not itself provide any rendering functionality, it can provide style
 information to applications and libraries that do. If used with XML documents
-produced by SXML or SDOM, SCSS can accomodate the full range of selector types
+produced by SXML or SDOM, SCSS can accommodate the full range of selector types
 described in the W3C recommendation; it can also match simple selectors against
 strings when structured document information is not available.
 

Modified: head/textproc/scss/pkg-plist
==============================================================================
--- head/textproc/scss/pkg-plist	Thu Oct 17 21:44:41 2013	(r330679)
+++ head/textproc/scss/pkg-plist	Thu Oct 17 21:46:25 2013	(r330680)
@@ -1,3 +1,4 @@
+info/scss.info
 share/guile/scss/common.scm
 share/guile/scss/lexer.scm
 share/guile/scss/parser.scm



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