mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
85e4513a6a
With LICENSE=edith and LICENSE_TEXT set the framework creates ${WRKDIR}/edith however WRKSRC=${WRKDIR}/edith too. Rename the license to fix this. /bin/sh: cannot create /wrkdirs/usr/ports/editors/edith/work/edith: Is a directory
40 lines
1018 B
Makefile
40 lines
1018 B
Makefile
# Created by: Christian Brueffer <chris@unixpages.org>
|
|
|
|
PORTNAME= edith
|
|
PORTVERSION= 1.58
|
|
PORTREVISION= 2
|
|
CATEGORIES= editors linux
|
|
MASTER_SITES= http://www.groenink.com/pub/edith/
|
|
DISTFILES= edith1.55.common.tar.gz \
|
|
edith1.58.linux-glibc.tar.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= X11 GUI editor for binary and plain text files
|
|
|
|
# Converted from RESTRICTED
|
|
LICENSE= edithlicense
|
|
LICENSE_NAME= edith
|
|
LICENSE_TEXT= Redistribution not allowed
|
|
LICENSE_PERMS= auto-accept
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
USES= linux
|
|
USE_LINUX= xorglibs
|
|
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/edith
|
|
EDITHDIR= ${PREFIX}/lib/edith
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/linux/edith ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${EDITHDIR}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/edi* ${STAGEDIR}${EDITHDIR}/bin
|
|
.for i in defaults help
|
|
@${MKDIR} ${STAGEDIR}${EDITHDIR}/${i}
|
|
${INSTALL_DATA} ${WRKSRC}/${i}/* ${STAGEDIR}${EDITHDIR}/${i}
|
|
.endfor
|
|
${INSTALL_MAN} ${WRKSRC}/edith.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|