1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Use MAKE_ARGS, fix location mentioned in pkg-descr

This commit is contained in:
Volker Stolz 2005-10-26 16:05:03 +00:00
parent d0c6f0c66a
commit 9c999f010e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=146419
3 changed files with 2 additions and 26 deletions

View File

@ -16,8 +16,8 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= UTF-8 character set support library, including regular expressions
GNU_CONFIGURE= YES
USE_GMAKE= YES
ALL_TARGET= tst
MAKE_ARGS= ETCDIR=${EXAMPLESDIR}
MAN3= ure.3 utf.3

View File

@ -1,24 +0,0 @@
--- Makefile.in.old Sat May 10 00:38:36 2003
+++ Makefile.in Sat May 10 00:52:03 2003
@@ -9,6 +9,7 @@
INCDIR= $(prefix)/include
MANDIR= $(prefix)/man
ETCDIR= $(prefix)/etc
+EGDIR= $(prefix)/share/examples/libutf
# SVR4, I hate you. What ****idiot**** dreamed this up????
# Yeah, like all csh or rc users need this crap...
@@ -32,11 +33,11 @@
ci -l ure.c ure.h urelang.c utf.c utf.h
install: $(LIBS)
- $(srcdir)/mkinstalldirs $(LIBDIR) $(INCDIR) $(ETCDIR) $(MANDIR)/man3
+ $(srcdir)/mkinstalldirs $(LIBDIR) $(INCDIR) $(EGDIR) $(MANDIR)/man3
$(INSTALL_DATA) $(LIBS) $(LIBDIR) ; $(RANLIB) $(LIBDIR)/$(LIBS)
$(INSTALL_DATA) $(srcdir)/ure.h $(INCDIR)
$(INSTALL_DATA) $(srcdir)/utf.h $(INCDIR)
- $(INSTALL_DATA) $(srcdir)/langcoll.utf $(ETCDIR)
+ $(INSTALL_DATA) $(srcdir)/langcoll.utf $(EGDIR)
$(INSTALL_DATA) $(srcdir)/utf.3 $(MANDIR)/man3
$(INSTALL_DATA) $(srcdir)/ure.3 $(MANDIR)/man3

View File

@ -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}/etc/langcoll.utf, and feedback as to their correctness
file, ${PREFIX}/share/examples/libutf/langcoll.utf, and feedback as to their correctness
is appreciated.
Alistair G. Crooks