1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

- Fix build

- Utilize NOPORTDOCS

PR:		45926
Submitted by:	Ports Fury
This commit is contained in:
Ying-Chieh Liao 2002-12-22 17:42:14 +00:00
parent ca6947d927
commit 605ba047d4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=71795
3 changed files with 23 additions and 9 deletions

View File

@ -17,14 +17,14 @@ MASTER_SITES= ftp://ftp.netsw.org/softeng/lang/c/tools/cdecl/ \
MAINTAINER= ports@FreeBSD.org
ALL_TARGET=
ALL_TARGET= ${PORTNAME}
MAN1= cdecl.1
MLINKS= cdecl.1 c++decl.1
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/cdecl
${INSTALL_DATA} ${WRKSRC}/testset* ${PREFIX}/share/doc/cdecl
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/testset* ${DOCSDIR}
.endif
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- Makefile.orig Mon Jan 15 21:36:38 1996
+++ Makefile Sun Feb 13 21:21:04 2000
--- Makefile.orig Tue Jan 16 14:36:38 1996
+++ Makefile Sat Nov 30 22:45:23 2002
@@ -15,13 +15,13 @@
#
# add -DUSE_READLINE To compile in support for the GNU readline library.
@ -15,7 +15,21 @@
-CATDIR= /usr/man/cat1
+BINDIR= $(PREFIX)/bin
+MANDIR= $(PREFIX)/man/man1
+CATDIR= $(PREFIX/usr/man/cat1
+CATDIR= $(PREFIX)/man/cat1
INSTALL= install -c
INSTALL_DATA= install -c -m 644
@@ -43,10 +43,10 @@
./c++decl < testset++
install: cdecl
- $(INSTALL) cdecl $(BINDIR)
+ ${BSD_INSTALL_PROGRAM} cdecl $(BINDIR)
ln $(BINDIR)/cdecl $(BINDIR)/c++decl
- $(INSTALL_DATA) cdecl.1 $(MANDIR)
- $(INSTALL_DATA) c++decl.1 $(MANDIR)
+ ${BSD_INSTALL_MAN} cdecl.1 $(MANDIR)
+ ${BSD_INSTALL_MAN} c++decl.1 $(MANDIR)
clean:
rm -f cdgram.c cdlex.c cdecl y.output c++decl

View File

@ -1,6 +1,6 @@
@comment $FreeBSD$
bin/cdecl
bin/c++decl
share/doc/cdecl/testset
share/doc/cdecl/testset++
@dirrm share/doc/cdecl
%%PORTDOCS%%share/doc/cdecl/testset
%%PORTDOCS%%share/doc/cdecl/testset++
%%PORTDOCS%%@dirrm share/doc/cdecl