pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/libcroco Initial import of libcroco 0.2. Pack...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f4a8eac4a3e3
branches:  trunk
changeset: 462017:f4a8eac4a3e3
user:      xtraeme <xtraeme%pkgsrc.org@localhost>
date:      Thu Sep 25 14:04:54 2003 +0000

description:
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.

diffstat:

 textproc/libcroco/DESCR         |   3 ++
 textproc/libcroco/Makefile      |  25 ++++++++++++++++++
 textproc/libcroco/PLIST         |  56 +++++++++++++++++++++++++++++++++++++++++
 textproc/libcroco/buildlink2.mk |  35 +++++++++++++++++++++++++
 textproc/libcroco/distinfo      |   4 ++
 5 files changed, 123 insertions(+), 0 deletions(-)

diffs (143 lines):

diff -r 9d21ead7a185 -r f4a8eac4a3e3 textproc/libcroco/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/libcroco/DESCR   Thu Sep 25 14:04:54 2003 +0000
@@ -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.
diff -r 9d21ead7a185 -r f4a8eac4a3e3 textproc/libcroco/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/libcroco/Makefile        Thu Sep 25 14:04:54 2003 +0000
@@ -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@localhost
+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"
diff -r 9d21ead7a185 -r f4a8eac4a3e3 textproc/libcroco/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/libcroco/PLIST   Thu Sep 25 14:04:54 2003 +0000
@@ -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
diff -r 9d21ead7a185 -r f4a8eac4a3e3 textproc/libcroco/buildlink2.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/libcroco/buildlink2.mk   Thu Sep 25 14:04:54 2003 +0000
@@ -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
diff -r 9d21ead7a185 -r f4a8eac4a3e3 textproc/libcroco/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/libcroco/distinfo        Thu Sep 25 14:04:54 2003 +0000
@@ -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



Home | Main Index | Thread Index | Old Index