- Merge scripts/configure into Makefile
- Add WWW: line of pkg/DESCR PR: 15915 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
This commit is contained in:
parent
f3e0930f5d
commit
b9ec16f737
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=24726
2 changed files with 21 additions and 13 deletions
|
@ -1,7 +1,7 @@
|
|||
# New ports collection makefile for: elk
|
||||
# Version required: 3.0pl3
|
||||
# Date created: 08 March 1995
|
||||
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
||||
# New ports collection makefile for: elk
|
||||
# Version required: 3.0pl3
|
||||
# Date created: 08 March 1995
|
||||
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
@ -17,20 +17,26 @@ USE_XLIB= yes
|
|||
ALL_TARGET= default
|
||||
MAN1= elk.1
|
||||
|
||||
#
|
||||
# we install the scheme binary as ${PREFIX}/bin/elk
|
||||
# to avoid a clash with mit-scheme.
|
||||
#
|
||||
post-patch:
|
||||
@${CP} ${WRKSRC}/config/untested/386pc-freebsd2.1-cc \
|
||||
${WRKSRC}/config/system
|
||||
@${CP} ${WRKSRC}/config/sites/386pc-freebsd2.1 \
|
||||
${WRKSRC}/config/site
|
||||
|
||||
pre-install:
|
||||
@${MKDIR} ${PREFIX}/share/elk
|
||||
|
||||
#
|
||||
# we install the scheme binary as ${PREFIX}/bin/elk
|
||||
# to avoid a clash with mit-scheme.
|
||||
#
|
||||
post-install:
|
||||
@(cd ${PREFIX}/share/elk; \
|
||||
${CP} bin/scheme ${PREFIX}/bin/elk; \
|
||||
${MKDIR} ${PREFIX}/include/elk; \
|
||||
${CP} -R include/* ${PREFIX}/include/elk; \
|
||||
${RM} -rf bin include)
|
||||
${INSTALL_PROGRAM} ${PREFIX}/share/elk/bin/scheme ${PREFIX}/bin/elk
|
||||
@${MKDIR} ${PREFIX}/include/elk
|
||||
${CP} -R ${PREFIX}/share/elk/include/* ${PREFIX}/include/elk
|
||||
.for dir in bin include
|
||||
@${RM} -rf ${PREFIX}/share/elk/${dir}
|
||||
.endfor
|
||||
@${INSTALL_MAN} ${WRKSRC}/doc/man/elk.1 ${PREFIX}/man/man1
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -8,3 +8,5 @@ mutually incompatible Lisp-like extension languages. Instead of
|
|||
inventing and implementing yet another extension language, application
|
||||
programmers can integrate Elk into their application to make it
|
||||
extensible and highly customizable.
|
||||
|
||||
WWW: http://www-rn.informatik.uni-bremen.de/software/elk/
|
||||
|
|
Loading…
Reference in a new issue