diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2010-12-08 09:57:43 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2010-12-08 09:57:43 +0000 |
commit | fcc2b98d578b2f75b617243c400992d1da18a7d6 (patch) | |
tree | 95a1eff48db631bb80374d2ea5ff05e76b072b92 /www/rubygem-less | |
parent | f5c762ac8633254ae2a090903ec901c0eed55a07 (diff) |
LESS extends CSS with: variables, mixins, operations and nested rules.
Best of all, LESS uses existing CSS syntax. This means you can rename
your current .css files to .less and they'll just work.
WWW: http://lesscss.org/
Notes
Notes:
svn path=/head/; revision=265840
Diffstat (limited to 'www/rubygem-less')
-rw-r--r-- | www/rubygem-less/Makefile | 26 | ||||
-rw-r--r-- | www/rubygem-less/distinfo | 2 | ||||
-rw-r--r-- | www/rubygem-less/pkg-descr | 5 |
3 files changed, 33 insertions, 0 deletions
diff --git a/www/rubygem-less/Makefile b/www/rubygem-less/Makefile new file mode 100644 index 000000000000..0d421f3d78e9 --- /dev/null +++ b/www/rubygem-less/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: ruby-less +# Date created: 2010-12-07 +# Whom: Nicola Vitale <nivit@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= less +PORTVERSION= 1.2.21 +#PORTREVISION= 0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= nivit@FreeBSD.org +COMMENT= The LESS Ruby gem compiles LESS code to CSS + +RUN_DEPENDS= rubygem-treetop>=1.4.9:${PORTSDIR}/devel/rubygem-treetop \ + rubygem-mutter>=0.5.3:${PORTSDIR}/devel/rubygem-mutter + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/lessc + +.include <bsd.port.mk> diff --git a/www/rubygem-less/distinfo b/www/rubygem-less/distinfo new file mode 100644 index 000000000000..3f85eeb9cf0e --- /dev/null +++ b/www/rubygem-less/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/less-1.2.21.gem) = 89f732bb6fb173f90cf59ba1c25e11618250d0936f1fad1b869b60a4ef427cde +SIZE (rubygem/less-1.2.21.gem) = 53760 diff --git a/www/rubygem-less/pkg-descr b/www/rubygem-less/pkg-descr new file mode 100644 index 000000000000..c329dc8a855c --- /dev/null +++ b/www/rubygem-less/pkg-descr @@ -0,0 +1,5 @@ +LESS extends CSS with: variables, mixins, operations and nested rules. +Best of all, LESS uses existing CSS syntax. This means you can rename +your current .css files to .less and they'll just work. + +WWW: http://lesscss.org/ |