Initial import of libcroco 0.2. Package imported from pkgsrc-wip.
The Libcroco project is an effort to build a generic Cascading Style Sheet (CSS) parsing and manipulation toolkit that can be used by GNOME applications in need of CSS support.
This commit is contained in:
parent
5f2911e3eb
commit
806cfce2ff
5 changed files with 123 additions and 0 deletions
3
textproc/libcroco/DESCR
Normal file
3
textproc/libcroco/DESCR
Normal file
|
@ -0,0 +1,3 @@
|
|||
The Libcroco project is an effort to build a generic Cascading Style Sheet
|
||||
(CSS) parsing and manipulation toolkit that can be used by GNOME applications
|
||||
in need of CSS support.
|
25
textproc/libcroco/Makefile
Normal file
25
textproc/libcroco/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2003/09/25 14:04:54 xtraeme Exp $
|
||||
#
|
||||
|
||||
DISTNAME= libcroco-0.2.0
|
||||
CATEGORIES= textproc
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libcroco/0.2/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
MAINTAINER= xtraeme@NetBSD.org
|
||||
HOMEPAGE= http://www.freespiders.org/projects/libcroco/
|
||||
COMMENT= Toolkit to parse and manipulate CSS (Cascading Style Sheets)
|
||||
|
||||
USE_BUILDLINK2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
||||
PKGCONFIG_OVERRIDE+= ${WRKSRC}/libcroco.pc.in
|
||||
|
||||
.include "../../devel/glib2/buildlink2.mk"
|
||||
.include "../../devel/pango/buildlink2.mk"
|
||||
.include "../../devel/pkgconfig/buildlink2.mk"
|
||||
.include "../../textproc/libxml2/buildlink2.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
56
textproc/libcroco/PLIST
Normal file
56
textproc/libcroco/PLIST
Normal file
|
@ -0,0 +1,56 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2003/09/25 14:04:55 xtraeme Exp $
|
||||
bin/croco-config
|
||||
bin/csslint
|
||||
include/libcroco/layeng/cr-box-view.h
|
||||
include/libcroco/layeng/cr-box.h
|
||||
include/libcroco/layeng/cr-lay-eng.h
|
||||
include/libcroco/libcroco.h
|
||||
include/libcroco/parser/cr-additional-sel.h
|
||||
include/libcroco/parser/cr-attr-sel.h
|
||||
include/libcroco/parser/cr-cascade.h
|
||||
include/libcroco/parser/cr-declaration.h
|
||||
include/libcroco/parser/cr-doc-handler.h
|
||||
include/libcroco/parser/cr-enc-handler.h
|
||||
include/libcroco/parser/cr-input.h
|
||||
include/libcroco/parser/cr-layout-eng.h
|
||||
include/libcroco/parser/cr-num.h
|
||||
include/libcroco/parser/cr-om-parser.h
|
||||
include/libcroco/parser/cr-parser-input.h
|
||||
include/libcroco/parser/cr-parser.h
|
||||
include/libcroco/parser/cr-pseudo.h
|
||||
include/libcroco/parser/cr-rgb.h
|
||||
include/libcroco/parser/cr-selector.h
|
||||
include/libcroco/parser/cr-simple-sel.h
|
||||
include/libcroco/parser/cr-statement.h
|
||||
include/libcroco/parser/cr-stylesheet.h
|
||||
include/libcroco/parser/cr-term.h
|
||||
include/libcroco/parser/cr-tknzr.h
|
||||
include/libcroco/parser/cr-token.h
|
||||
include/libcroco/parser/cr-utils.h
|
||||
include/libcroco/parser/libcroco-config.h
|
||||
include/libcroco/seleng/cr-font-sel.h
|
||||
include/libcroco/seleng/cr-fonts.h
|
||||
include/libcroco/seleng/cr-sel-eng.h
|
||||
include/libcroco/seleng/cr-style.h
|
||||
lib/libcrlayeng.a
|
||||
lib/libcrlayeng.la
|
||||
lib/libcrlayeng.so
|
||||
lib/libcrlayeng.so.2
|
||||
lib/libcrlayeng.so.2.0
|
||||
lib/libcroco.a
|
||||
lib/libcroco.la
|
||||
lib/libcroco.so
|
||||
lib/libcroco.so.2
|
||||
lib/libcroco.so.2.0
|
||||
lib/libcrseleng.a
|
||||
lib/libcrseleng.la
|
||||
lib/libcrseleng.so
|
||||
lib/libcrseleng.so.2
|
||||
lib/libcrseleng.so.2.0
|
||||
lib/pkgconfig/libcroco.pc
|
||||
man/man1/croco-config.1
|
||||
man/man1/csslint.1
|
||||
@dirrm include/libcroco/seleng
|
||||
@dirrm include/libcroco/parser
|
||||
@dirrm include/libcroco/layeng
|
||||
@dirrm include/libcroco
|
35
textproc/libcroco/buildlink2.mk
Normal file
35
textproc/libcroco/buildlink2.mk
Normal file
|
@ -0,0 +1,35 @@
|
|||
# $NetBSD: buildlink2.mk,v 1.1.1.1 2003/09/25 14:04:55 xtraeme Exp $
|
||||
#
|
||||
# This Makefile fragment is included by packages that use libcroco.
|
||||
#
|
||||
# This file was created automatically using createbuildlink 2.6.
|
||||
#
|
||||
|
||||
.if !defined(LIBCROCO_BUILDLINK2_MK)
|
||||
LIBCROCO_BUILDLINK2_MK= # defined
|
||||
|
||||
BUILDLINK_PACKAGES+= libcroco
|
||||
BUILDLINK_DEPENDS.libcroco?= libcroco>=0.2.0
|
||||
BUILDLINK_PKGSRCDIR.libcroco?= ../../wip/libcroco
|
||||
|
||||
EVAL_PREFIX+= BUILDLINK_PREFIX.libcroco=libcroco
|
||||
BUILDLINK_PREFIX.libcroco_DEFAULT= ${LOCALBASE}
|
||||
BUILDLINK_FILES.libcroco+= include/libcroco/layeng/*.h
|
||||
BUILDLINK_FILES.libcroco+= include/libcroco/libcroco.h
|
||||
BUILDLINK_FILES.libcroco+= include/libcroco/parser/*.h
|
||||
BUILDLINK_FILES.libcroco+= include/libcroco/seleng/*.h
|
||||
BUILDLINK_FILES.libcroco+= lib/libcrlayeng.*
|
||||
BUILDLINK_FILES.libcroco+= lib/libcroco.*
|
||||
BUILDLINK_FILES.libcroco+= lib/libcrseleng.*
|
||||
BUILDLINK_FILES.libcroco+= lib/pkgconfig/libcroco.pc
|
||||
|
||||
.include "../../devel/glib2/buildlink2.mk"
|
||||
.include "../../devel/pango/buildlink2.mk"
|
||||
.include "../../devel/pkgconfig/buildlink2.mk"
|
||||
.include "../../textproc/libxml2/buildlink2.mk"
|
||||
|
||||
BUILDLINK_TARGETS+= libcroco-buildlink
|
||||
|
||||
libcroco-buildlink: _BUILDLINK_USE
|
||||
|
||||
.endif # LIBCROCO_BUILDLINK2_MK
|
4
textproc/libcroco/distinfo
Normal file
4
textproc/libcroco/distinfo
Normal file
|
@ -0,0 +1,4 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2003/09/25 14:04:54 xtraeme Exp $
|
||||
|
||||
SHA1 (libcroco-0.2.0.tar.bz2) = 034c31d4f46344d0397f7f084ebef0f2f4ef8c25
|
||||
Size (libcroco-0.2.0.tar.bz2) = 286024 bytes
|
Loading…
Reference in a new issue