diff options
author | danilo <danilo@FreeBSD.org> | 2013-12-09 21:56:40 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2013-12-09 21:56:40 +0800 |
commit | 42d9133bf74855a832b21a67aa8b0d061fdd918b (patch) | |
tree | 69962d5b091c4b77ea8e03a66ec8fe51fe35dd61 /misc | |
parent | 230cbc97a908570bdb0491e19dd69443d301a2f2 (diff) | |
download | freebsd-ports-gnome-42d9133bf74855a832b21a67aa8b0d061fdd918b.tar.gz freebsd-ports-gnome-42d9133bf74855a832b21a67aa8b0d061fdd918b.tar.zst freebsd-ports-gnome-42d9133bf74855a832b21a67aa8b0d061fdd918b.zip |
- Add stage support
- Limit line size in pkg-descr
Diffstat (limited to 'misc')
-rw-r--r-- | misc/libutf/Makefile | 10 | ||||
-rw-r--r-- | misc/libutf/pkg-descr | 4 | ||||
-rw-r--r-- | misc/libutf/pkg-plist | 2 |
3 files changed, 12 insertions, 4 deletions
diff --git a/misc/libutf/Makefile b/misc/libutf/Makefile index da354131c742..223a4def26b9 100644 --- a/misc/libutf/Makefile +++ b/misc/libutf/Makefile @@ -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> diff --git a/misc/libutf/pkg-descr b/misc/libutf/pkg-descr index 747cd532464a..694d30759931 100644 --- a/misc/libutf/pkg-descr +++ b/misc/libutf/pkg-descr @@ -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 diff --git a/misc/libutf/pkg-plist b/misc/libutf/pkg-plist index 1fac3d1b0a40..ee0c40128f59 100644 --- a/misc/libutf/pkg-plist +++ b/misc/libutf/pkg-plist @@ -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%% |