diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2014-04-13 03:15:42 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2014-04-13 03:15:42 +0000 |
commit | 73e009f6e8753b1c42c4e88bdfd4540c94fa8dfc (patch) | |
tree | a3a82fafb7e58befcccb86a6b8067709346a0a92 | |
parent | - Update to 20140408 (diff) |
Libsass is a C/C++ port of the Sass CSS precompiler.
The original version was written in Ruby, but this version is meant
for efficiency and portability.
This library strives to be light, simple, and easy to build and integrate
with a variety of platforms and languages.
WWW: http://libsass.org/
Notes
Notes:
svn path=/head/; revision=351181
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/libsass/Makefile | 29 | ||||
-rw-r--r-- | textproc/libsass/distinfo | 2 | ||||
-rw-r--r-- | textproc/libsass/pkg-descr | 8 | ||||
-rw-r--r-- | textproc/libsass/pkg-plist | 7 |
5 files changed, 47 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 832c76e4e132..9eb97a33f546 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -365,6 +365,7 @@ SUBDIR += libodfgen SUBDIR += libparsifal SUBDIR += libroxml + SUBDIR += libsass SUBDIR += libsoldout SUBDIR += libsphinxclient SUBDIR += libstree diff --git a/textproc/libsass/Makefile b/textproc/libsass/Makefile new file mode 100644 index 000000000000..a20159d728b7 --- /dev/null +++ b/textproc/libsass/Makefile @@ -0,0 +1,29 @@ +# Created by: Nicola Vitale <nivit@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= libsass +PORTVERSION= 1.0.1 +#PORTREVISION= 0 +CATEGORIES= textproc + +MAINTAINER= nivit@FreeBSD.org +COMMENT= C/C++ implementation of a Sass compiler + +LICENSE= MIT + +AUTOMAKE_ARGS= --add-missing + +GH_ACCOUNT= hcatlin +GH_COMMIT= 0388a62 +GH_TAGNAME= v${PORTVERSION} + +INSTALL_TARGET= install-strip + +PATHFIX_MAKEFILEIN= Makefile.am + +USE_AUTOTOOLS= aclocal autoconf autoheader automake libtoolize +USE_GITHUB= yes +USE_LDCONFIG= yes +USES= pathfix + +.include <bsd.port.mk> diff --git a/textproc/libsass/distinfo b/textproc/libsass/distinfo new file mode 100644 index 000000000000..a3339cf53523 --- /dev/null +++ b/textproc/libsass/distinfo @@ -0,0 +1,2 @@ +SHA256 (libsass-1.0.1.tar.gz) = 93ed72227a93966682a9e49b83a0adb2b1f273acd07ad5edd7939b2b458dcf45 +SIZE (libsass-1.0.1.tar.gz) = 81753 diff --git a/textproc/libsass/pkg-descr b/textproc/libsass/pkg-descr new file mode 100644 index 000000000000..e9d6dd038e8d --- /dev/null +++ b/textproc/libsass/pkg-descr @@ -0,0 +1,8 @@ +Libsass is a C/C++ port of the Sass CSS precompiler. +The original version was written in Ruby, but this version is meant +for efficiency and portability. + +This library strives to be light, simple, and easy to build and integrate +with a variety of platforms and languages. + +WWW: http://libsass.org/ diff --git a/textproc/libsass/pkg-plist b/textproc/libsass/pkg-plist new file mode 100644 index 000000000000..0cfbed3d013b --- /dev/null +++ b/textproc/libsass/pkg-plist @@ -0,0 +1,7 @@ +include/sass.h +include/sass_interface.h +lib/libsass.a +lib/libsass.la +lib/libsass.so +lib/libsass.so.0 +libdata/pkgconfig/libsass.pc |