Date: Mon, 9 Dec 2013 13:56:40 +0000 (UTC) From: Danilo Egea Gondolfo <danilo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335983 - head/misc/libutf Message-ID: <201312091356.rB9DufgF027189@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danilo Date: Mon Dec 9 13:56:40 2013 New Revision: 335983 URL: http://svnweb.freebsd.org/changeset/ports/335983 Log: - Add stage support - Limit line size in pkg-descr Modified: head/misc/libutf/Makefile head/misc/libutf/pkg-descr head/misc/libutf/pkg-plist Modified: head/misc/libutf/Makefile ============================================================================== --- head/misc/libutf/Makefile Mon Dec 9 13:35:01 2013 (r335982) +++ head/misc/libutf/Makefile Mon Dec 9 13:56:40 2013 (r335983) @@ -15,7 +15,13 @@ GNU_CONFIGURE= YES ALL_TARGET= tst MAKE_ARGS= ETCDIR=${EXAMPLESDIR} -MAN3= ure.3 utf.3 +do-install: + ${INSTALL_DATA} ${WRKSRC}/ure.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/utf.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_LIB} ${WRKSRC}/libutf.a ${STAGEDIR}${PREFIX}/lib + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/langcoll.utf ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_MAN} ${WRKSRC}/utf.3 ${STAGEDIR}${MAN3PREFIX}/man/man3 + ${INSTALL_MAN} ${WRKSRC}/ure.3 ${STAGEDIR}${MAN3PREFIX}/man/man3 -NO_STAGE= yes .include <bsd.port.mk> Modified: head/misc/libutf/pkg-descr ============================================================================== --- head/misc/libutf/pkg-descr Mon Dec 9 13:35:01 2013 (r335982) +++ head/misc/libutf/pkg-descr Mon Dec 9 13:56:40 2013 (r335983) @@ -1,7 +1,7 @@ This software is a library which implements UTF-8 support routines, and uses those routines and others to implement UTF-8aware regular expresions. Language collation sequences are specified in a text -file, ${PREFIX}/share/examples/libutf/langcoll.utf, and feedback as to their correctness -is appreciated. +file, ${PREFIX}/share/examples/libutf/langcoll.utf, and feedback +as to their correctness is appreciated. Alistair G. Crooks Modified: head/misc/libutf/pkg-plist ============================================================================== --- head/misc/libutf/pkg-plist Mon Dec 9 13:35:01 2013 (r335982) +++ head/misc/libutf/pkg-plist Mon Dec 9 13:56:40 2013 (r335983) @@ -1,5 +1,7 @@ include/ure.h include/utf.h +man/man3/ure.3.gz +man/man3/utf.3.gz lib/libutf.a %%EXAMPLESDIR%%/langcoll.utf @dirrm %%EXAMPLESDIR%%
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312091356.rB9DufgF027189>