1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/editors/le/Makefile
Antoine Brodin a690d0fe65 - Do not violate stagedir
- Bump PORTREVISION as some files were installed outside stagedir

Reported by:	poudriere
With hat:	portmgr
2014-04-01 17:41:29 +00:00

48 lines
1.2 KiB
Makefile

# Created by: Andrey Zakhvatov
# $FreeBSD$
PORTNAME= le
PORTVERSION= 1.14.9
PORTREVISION= 1
CATEGORIES= editors
MASTER_SITES= ftp://ftp.yar.ru/pub/source/le/%SUBDIR%/ \
http://mirrors.rit.edu/zi/
MASTER_SITE_SUBDIR= . old
MAINTAINER= zi@FreeBSD.org
COMMENT= Text editor with block and binary operations
LICENSE= GPLv3
USE_BZIP2= yes
GNU_CONFIGURE= yes
MAKE_JOBS_UNSAFE= yes
PORTDOCS= *
PORTDATA= *
PLIST_FILES= bin/le \
man/man1/le.1.gz
MISC_DATA= colors-black colors-blue colors-defbg colors-green \
colors-white keymap-emacs mainmenu mainmenu-ru syntax
SRC_DATA= le.hlp
do-install:
cd ${WRKSRC}/src && ${INSTALL_PROGRAM} le ${STAGEDIR}${PREFIX}/bin
cd ${WRKSRC}/doc && ${INSTALL_MAN} le.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
@${MKDIR} ${STAGEDIR}${DATADIR}
.for file in ${STAGEDIR}${MISC_DATA}
cd ${WRKSRC}/misc && ${INSTALL_DATA} ${file} ${STAGEDIR}${DATADIR}
.endfor
@(cd ${WRKSRC}/misc && ${COPYTREE_SHARE} syntax.d ${STAGEDIR}${DATADIR})
.for file in ${SRC_DATA}
cd ${WRKSRC}/src && ${INSTALL_DATA} ${file} ${STAGEDIR}${DATADIR}
.endfor
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in FEATURES HISTORY NEWS README TODO
cd ${WRKSRC} && ${INSTALL_DATA} ${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>