0263b9d868
both current (fc4) and future linux (f8) distributions at one ports tree. The patch contains full changes to ports/Mk files and all ports involved. But only infrastructure is changed. The resulting packages are the same as before. Hence no need to bump PORTREVISIONs. The idea was taken from bsd.gnome.mk and others. More than 130 ports are switched to follow a new linux infrastructure introduced by changes to bsd.port.mk, bsd.linux-rpm.mk and a new bsd.linux-apps.mk. Thanks for all who was involved and helped me with this work. And help from Alexander Leidinger was incredible. Other changes are coming. Stay tuned! PR: ports/132510 Submitted by: bsam (me) Exp-run by: portmgr (pav)
43 lines
1,020 B
Makefile
43 lines
1,020 B
Makefile
# New ports collection makefile for: edith
|
|
# Date created: 8 February 2002
|
|
# Whom: Christian Brueffer <chris@unixpages.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
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= A X11 GUI editor for binary and plain text files
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= xorglibs
|
|
|
|
RESTRICTED= "Redistribution not allowed"
|
|
NO_BUILD= yes
|
|
|
|
MAN1= edith.1
|
|
MANCOMPRESSED= no
|
|
|
|
WRKSRC= ${WRKDIR}/edith
|
|
EDITHDIR= ${PREFIX}/lib/edith
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/linux/edith ${PREFIX}/bin
|
|
${MKDIR} ${EDITHDIR}
|
|
${MKDIR} ${EDITHDIR}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/edi* ${EDITHDIR}/bin
|
|
.for i in defaults help
|
|
${MKDIR} ${EDITHDIR}/${i}
|
|
${INSTALL_DATA} ${WRKSRC}/${i}/* ${EDITHDIR}/${i}
|
|
.endfor
|
|
${INSTALL_MAN} ${WRKSRC}/edith.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|