1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/editors/xvile/Makefile

101 lines
2.6 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: xvile
# Date created: Wed Nov 26, 1996
# Whom: pgf
#
1999-08-25 05:57:29 +00:00
# $FreeBSD$
#
PORTNAME= xvile
PORTVERSION= 9.5g
CATEGORIES= editors
MASTER_SITES= ftp://ftp.phred.org/pub/vile/ \
ftp://invisible-island.net/vile/ \
ftp://dickey.his.com/vile/
DISTNAME= vile-9.5
EXTRACT_SUFX= .tgz
2003-10-09 09:54:54 +00:00
PATCH_SITES= ${MASTER_SITES:S,vile/,vile/patches/,g}
2005-12-14 09:46:19 +00:00
PATCHFILES= vile-9.5a.patch.gz \
vile-9.5b.patch.gz \
vile-9.5c.patch.gz \
vile-9.5d.patch.gz \
vile-9.5e.patch.gz \
vile-9.5f.patch.gz \
vile-9.5g.patch.gz
2002-07-04 08:02:37 +00:00
MAINTAINER= gj@FreeBSD.org
COMMENT= VI Like Emacs, X11 version -- a fully "X aware" vi work-alike
USE_XLIB= yes
MAKEFILE= makefile
GNU_CONFIGURE= yes
USE_PERL5= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--with-libdir-path=${PREFIX}/lib/xvile \
2005-10-23 08:47:46 +00:00
--datadir=${PREFIX}/share/xvile \
--x-includes=${X11BASE}/include \
2005-10-23 08:47:46 +00:00
--x-libraries=${X11BASE}/lib
1996-11-17 07:01:32 +00:00
MAN1= xvile.1
1995-04-24 03:38:32 +00:00
.if defined(WITH_ALL)
WITH_FILTERS=1
WITH_MENUS=1
WITH_PERL=1
WITH_XAW3D=1
.endif
1997-09-06 19:58:13 +00:00
pre-configure:
.if ! defined(WITH_MENUS)
@${ECHO_MSG} "To use xvile with menus, set the environment variable WITH_MENUS,"
@${ECHO_MSG} "which will also turn on Xaw. If you have Xaw3d, you can use it"
@${ECHO_MSG} "by also settting the environment variable WITH_XAW3D."
.endif
.if ! defined(WITH_PERL)
@${ECHO_MSG} "To use xvile with PERL, set the environment variable WITH_PERL."
.endif
.if ! defined(WITH_FILTERS)
@${ECHO_MSG} "Define WITH_FILTERS if you want to make an xvile which will"
@${ECHO_MSG} "dynamically load filters as needed."
.endif
1997-09-06 19:58:13 +00:00
.if defined(WITH_MENUS)
CONFIGURE_ARGS+= --with-screen=Xaw
.if defined(WITH_XAW3D)
LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d
CONFIGURE_ARGS+= --with-Xaw3d
.endif
1997-09-06 19:58:13 +00:00
.else
CONFIGURE_ARGS+= --with-screen=x11
1997-09-06 19:58:13 +00:00
.endif
.if defined(WITH_PERL)
CONFIGURE_ARGS+= --with-perl
2000-10-08 00:48:23 +00:00
PLIST= ${PKGDIR}/pkg-plist.perl
USE_PERL5= yes
.endif
.if defined(WITH_FILTERS)
CONFIGURE_ARGS+= --with-loadable-filters
PLIST= ${PKGDIR}/pkg-plist.filt
.endif
.if defined(WITH_PERL) && defined(WITH_FILTERS)
PLIST= ${PKGDIR}/pkg-plist.perl+filt
.endif
1997-09-06 19:58:13 +00:00
post-install:
.if !defined(NOPORTDOCS)
@if ! [ -d ${PREFIX}/share/doc/xvile ]; then ${MKDIR} ${PREFIX}/share/doc/xvile; fi
${INSTALL_DATA} ${WRKSRC}/doc/*.doc ${PREFIX}/share/doc/xvile
1997-09-06 19:58:13 +00:00
.endif
@if ! [ -d ${PREFIX}/share/xvile/macros ]; then ${MKDIR} ${PREFIX}/share/xvile/macros; fi
${INSTALL_DATA} ${WRKSRC}/macros/*.rc ${PREFIX}/share/xvile/macros
${INSTALL_SCRIPT} ${WRKSRC}/macros/vile-pager ${PREFIX}/share/xvile/macros
@${ECHO_MSG} "Look in ${PREFIX}/share/doc/xvile for documentation."
@${ECHO_MSG} "Look in ${PREFIX}/share/xvile/macros for macros."
1997-09-06 19:58:13 +00:00
.include <bsd.port.mk>