blob: b32f5f0808e37ecbbb9da5c7c046203a69ec41f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $NetBSD: Makefile,v 1.12 2005/06/16 06:57:50 jlam Exp $
DISTNAME= xcoral-3.2
CATEGORIES= editors
MASTER_SITES= ${MASTER_SITE_XCONTRIB:=editors/}
MAINTAINER= tech-pkg@NetBSD.org
COMMENT= Multiwindow mouse-based text editor for X
USE_X11BASE= yes
GNU_CONFIGURE= yes
LIBFILES= DEPEND README cmd.sc color.sc comments.sc compare-win.sc \
complete-word.sc describe.sc edir.sc edt.sc example.sc \
french.sc hack-filename.sc hanoi.sc head.sc html.sc \
java.sc keydef-ext.sc latex-macros.sc latex.sc \
man.dtex misc-commands.sc mode-ext.sc mode.sc mouse.sc \
rcs.sc save.sc sun-keydef.sc title.sc top-ten.sc \
utilities.sc version.sc window-utilities.sc xcoralrc.lf
INSTALLATION_DIRS= bin
.include "../../mk/x11.buildlink3.mk"
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/xcoral
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xcoral/HTML/icons
${INSTALL_PROGRAM} ${WRKSRC}/xcoral ${PREFIX}/bin
.for FILE in ${LIBFILES}
${INSTALL_DATA} ${WRKSRC}/SmacLib/${FILE} ${PREFIX}/lib/xcoral
.endfor
${CP} -r ${WRKSRC}/Doc/* ${PREFIX}/share/doc/xcoral
.include "../../mk/bsd.pkg.mk"
|