mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
f6e8af7318
- Take maintainership and reset original maintainer(maintainer timeout twice) PR: ports/130428, ports/130113 Submitted by: chinsan (me)
45 lines
943 B
Makefile
45 lines
943 B
Makefile
# New ports collection makefile for: joe
|
|
# Date created: 01 Jul 1995
|
|
# Whom: torstenb@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= joe
|
|
PORTVERSION= 3.7
|
|
PORTEPOCH= 1
|
|
CATEGORIES+= editors
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}-editor
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER?= chinsan@FreeBSD.org
|
|
COMMENT= Joe's Own Editor
|
|
|
|
BUILD_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
|
|
RUN_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
|
|
|
|
CONFLICTS= joe-2.*
|
|
|
|
USE_GMAKE= yes
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib -liconv"
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
MANLANG= "" ru
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
.for file in jmacsrc jpicorc jstarrc rjoerc joerc
|
|
.if !exists(${PREFIX}/etc/${PORTNAME}/${file})
|
|
@${CP} ${PREFIX}/etc/${PORTNAME}/${file} ${PREFIX}/etc/${PORTNAME}/${file}.dist
|
|
.endif
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|