Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Feb 2013 14:21:18 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r311838 - head/editors/xvile
Message-ID:  <201302071421.r17ELINh079249@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Thu Feb  7 14:21:18 2013
New Revision: 311838
URL: http://svnweb.freebsd.org/changeset/ports/311838

Log:
  - Update to 9.8i
  
  PR:		175038
  Submitted by:	Ports Fury

Deleted:
  head/editors/xvile/pkg-plist.filt
  head/editors/xvile/pkg-plist.perl
  head/editors/xvile/pkg-plist.perl+filt
Modified:
  head/editors/xvile/Makefile
  head/editors/xvile/distinfo   (contents, props changed)
  head/editors/xvile/pkg-descr   (contents, props changed)
  head/editors/xvile/pkg-plist   (contents, props changed)

Modified: head/editors/xvile/Makefile
==============================================================================
--- head/editors/xvile/Makefile	Thu Feb  7 14:20:53 2013	(r311837)
+++ head/editors/xvile/Makefile	Thu Feb  7 14:21:18 2013	(r311838)
@@ -2,78 +2,103 @@
 # $FreeBSD$
 
 PORTNAME=	xvile
-PORTVERSION=	9.8g
+PORTVERSION=	9.8i
 CATEGORIES=	editors
-MASTER_SITES=	ftp://invisible-island.net/vile/current/ \
-		ftp://dickey.his.com/vile/current/ \
-		ftp://ftp.phred.org/pub/vile/current/
-DISTNAME=	vile-9.8g
+MASTER_SITES=	ftp://dickey.his.com/vile/current/ \
+		ftp://invisible-island.net/vile/current/
+DISTNAME=	vile-${PORTVERSION}
 EXTRACT_SUFX=	.tgz
 
-PATCH_SITES=    ${MASTER_SITES:S,vile/current/,vile/patches/,g}
-PATCHFILES=
+PATCH_SITES=	${MASTER_SITES:S,vile/current/,vile/patches/,g}
+PATCHFILES=	# none
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	VI Like Emacs, X11 version -- a fully "X aware" vi work-alike
+COMMENT=	VI Like Emacs -- X11 version
 
-MAKEFILE=	makefile
+LICENSE=	GPLv2
+
+OPTIONS_DEFINE=	FILTERS ICONV PERL DOCS
+OPTIONS_RADIO=	MENUS
+OPTIONS_RADIO_MENUS=	MOTIF XAW XAW3D
+FILTERS_DESC=	Loadable filters
+MENUS_DESC=	Support for menus
+XAW_DESC=	X Athena Widgets
+XAW3D_DESC=	X Athena Widgets with 3D effect
+
+USE_XORG=	x11 xext xpm
 GNU_CONFIGURE=	yes
-USE_XORG=	x11 xpm xext
+CONFIGURE_ARGS=	--with-xpm \
+		--with-pixmapdir=${PREFIX}/share/pixmaps
+MAKEFILE=	makefile
 MAKE_JOBS_SAFE=	yes
 
-CONFIGURE_ARGS=	--prefix=${PREFIX} \
-		--with-libdir-path=${PREFIX}/lib/xvile \
-		--datadir=${PREFIX}/share/xvile
+DATADIR=	${PREFIX}/share/vile
+
 MAN1=		xvile.1
 
-OPTIONS_DEFINE=	FILTERS ICONV MENUS PERL XAW3D DOCS
-FILTERS_DESC=	Loadable filters
-MENUS_DESC=	Support for menus
-XAW3D_DESC=	XAW3D to get a 3D effect
+CONFLICTS_INSTALL=	vile-[0-9]*
 
 .include <bsd.port.options.mk>
 
+.if ${PORT_OPTIONS:MFILTERS}
+CONFIGURE_ARGS+=	--with-loadable-filters
+PLIST_SUB+=	SO_EXT=".so"
+.else
+PLIST_SUB+=	SO_EXT=""
+.endif
+
 .if ${PORT_OPTIONS:MICONV}
-CONFIGURE_ARGS+=	--with-iconv
 USE_ICONV=	yes
+CONFIGURE_ARGS+=	--with-iconv
+PLIST_SUB+=	ICONV=""
 .else
-CONFIGURE_ARGS+=	--without-iconv
+CONFIGURE_ARGS+=	--without-iconv --without-locale
+PLIST_SUB+=	ICONV="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MMENUS}
-CONFIGURE_ARGS+= --with-screen=Xaw
-.if ${PORT_OPTIONS:MXAW3D}
-LIB_DEPENDS+=	Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d
-CONFIGURE_ARGS+=	--with-Xaw3d
-.endif
+.if ${PORT_OPTIONS:MPERL}
+USE_PERL5=	yes
+CONFIGURE_ARGS+=	--with-perl
+PLIST_SUB+=	PERL=""
 .else
+PLIST_SUB+=	PERL="@comment "
+.endif
+
+.if empty(PORT_OPTIONS:MMOTIF) && empty(PORT_OPTIONS:MXAW) && empty(PORT_OPTIONS:MXAW3D)
 CONFIGURE_ARGS+=	--with-screen=x11
 .endif
 
-.if ${PORT_OPTIONS:MPERL}
-CONFIGURE_ARGS+= --with-perl
-PLIST=		${PKGDIR}/pkg-plist.perl
-USE_PERL5=	yes
+.if ${PORT_OPTIONS:MMOTIF}
+USE_MOTIF=	yes
+CONFIGURE_ARGS+=	--with-screen=motif
 .endif
 
-.if ${PORT_OPTIONS:MFILTERS}
-CONFIGURE_ARGS+=	--with-loadable-filters
-PLIST=		${PKGDIR}/pkg-plist.filt
+.if ${PORT_OPTIONS:MXAW}
+USE_XORG+=	xaw
+CONFIGURE_ARGS+=	--with-screen=athena
 .endif
 
-.if ${PORT_OPTIONS:MPERL} && ${PORT_OPTIONS:MFILTERS}
-PLIST=		${PKGDIR}/pkg-plist.perl+filt
+.if ${PORT_OPTIONS:MXAW3D}
+LIB_DEPENDS+=	Xaw3d:${PORTSDIR}/x11-toolkits/Xaw3d
+CONFIGURE_ARGS+=	--enable-colored-menus \
+			--with-Xaw3d \
+			--with-screen=xaw3d
 .endif
 
+post-patch:
+	@${REINPLACE_CMD} -e \
+		's|^DOCDIR|#DOCDIR|' ${WRKSRC}/makefile.in
+	@${REINPLACE_CMD} -e \
+		's|^#!.*|#!${PERL}|' ${WRKSRC}/perl/vileget
+
 post-install:
+	@${MKDIR} ${DATADIR}/macros
+	(cd ${WRKSRC}/macros && ${INSTALL_DATA} *.rc ${DATADIR}/macros)
+	@${MKDIR} ${DESKTOPDIR}
+	(cd ${WRKSRC}/macros && ${INSTALL_DATA} *.desktop ${DESKTOPDIR})
 .if ${PORT_OPTIONS:MDOCS}
-	@if ! [ -d ${PREFIX}/share/doc/xvile ]; then ${MKDIR} ${PREFIX}/share/doc/xvile; fi
-	${INSTALL_DATA} ${WRKSRC}/doc/*.doc ${PREFIX}/share/doc/xvile
+	@${MKDIR} ${DOCSDIR}
+	(cd ${WRKSRC}/doc && ${INSTALL_DATA} *.doc ${DOCSDIR})
 .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."
 
 .include <bsd.port.mk>

Modified: head/editors/xvile/distinfo
==============================================================================
--- head/editors/xvile/distinfo	Thu Feb  7 14:20:53 2013	(r311837)
+++ head/editors/xvile/distinfo	Thu Feb  7 14:21:18 2013	(r311838)
@@ -1,2 +1,2 @@
-SHA256 (vile-9.8g.tgz) = 7644909e2a64d85c6a3a45d1ad8bb18bce937119507fcc66d705aab8d4522be7
-SIZE (vile-9.8g.tgz) = 2220840
+SHA256 (vile-9.8i.tgz) = b4279e5c55579b2b3a6f12493587ca7fc69e6ae5c749e913113ea97c374d3a42
+SIZE (vile-9.8i.tgz) = 2254730

Modified: head/editors/xvile/pkg-descr
==============================================================================
--- head/editors/xvile/pkg-descr	Thu Feb  7 14:20:53 2013	(r311837)
+++ head/editors/xvile/pkg-descr	Thu Feb  7 14:21:18 2013	(r311838)
@@ -19,3 +19,5 @@ notably: 
 	auxiliary utilities for man page and C program syntax highlighting
 	built-in macro language
 	portability to all UNIX platforms, VMS, DOS, Win32, OS/2
+
+WWW: http://invisible-island.net/vile/

Modified: head/editors/xvile/pkg-plist
==============================================================================
--- head/editors/xvile/pkg-plist	Thu Feb  7 14:20:53 2013	(r311837)
+++ head/editors/xvile/pkg-plist	Thu Feb  7 14:21:18 2013	(r311838)
@@ -1,229 +1,259 @@
 bin/lxvile
 bin/lxvile-fonts
 bin/uxvile
+%%PERL%%bin/vileget
+bin/xshell.sh
 bin/xvile
 bin/xvile-pager
-bin/xshell.sh
 lib/X11/app-defaults/UXVile
 lib/X11/app-defaults/XVile
-lib/xvile/atr2ansi
-lib/xvile/atr2html
-lib/xvile/atr2text
-lib/xvile/vile-as-filt
-lib/xvile/vile-asm-filt
-lib/xvile/vile-basic-filt
-lib/xvile/vile-c-filt
-lib/xvile/vile-crypt
-lib/xvile/vile-key-filt
-lib/xvile/vile-lisp-filt
-lib/xvile/vile-manfilt
-lib/xvile/vile-pas-filt
-lib/xvile/vile-ada-filt
-lib/xvile/vile-awk-filt
-lib/xvile/vile-au3-filt
-lib/xvile/vile-bat-filt
-lib/xvile/vile-bnf-filt
-lib/xvile/vile-cfg-filt
-lib/xvile/vile-conf-filt
-lib/xvile/vile-css-filt
-lib/xvile/vile-cweb-filt
-lib/xvile/vile-dcl-filt
-lib/xvile/vile-fdl-filt
-lib/xvile/vile-hs-filt
-lib/xvile/vile-def-filt
-lib/xvile/vile-diff-filt
-lib/xvile/vile-ecl-filt
-lib/xvile/vile-esql-filt
-lib/xvile/vile-erl-filt
-lib/xvile/vile-est-filt
-lib/xvile/vile-html-filt
-lib/xvile/vile-imake-filt
-lib/xvile/vile-ini-filt
-lib/xvile/vile-info-filt
-lib/xvile/vile-iss-filt
-lib/xvile/vile-latex-filt
-lib/xvile/vile-lex-filt
-lib/xvile/vile-lua-filt
-lib/xvile/vile-m4-filt
-lib/xvile/vile-mail-filt
-lib/xvile/vile-mailcap-filt
-lib/xvile/vile-make-filt
-lib/xvile/vile-mcrl-filt
-lib/xvile/vile-midl-filt
-lib/xvile/vile-mms-filt
-lib/xvile/vile-nr-filt
-lib/xvile/vile-perl-filt
-lib/xvile/vile-php-filt
-lib/xvile/vile-pot-filt
-lib/xvile/vile-ps-filt
-lib/xvile/vile-py-filt
-lib/xvile/vile-rc-filt
-lib/xvile/vile-rcs-filt
-lib/xvile/vile-rexx-filt
-lib/xvile/vile-rpm-filt
-lib/xvile/vile-rtf-filt
-lib/xvile/vile-ruby-filt
-lib/xvile/vile-sccs-filt
-lib/xvile/vile-scheme-filt
-lib/xvile/vile-sed-filt
-lib/xvile/vile-sh-filt
-lib/xvile/vile-sml-filt
-lib/xvile/vile-spell-filt
-lib/xvile/vile-sql-filt
-lib/xvile/vile-tags-filt
-lib/xvile/vile-tbl-filt
-lib/xvile/vile-tc-filt
-lib/xvile/vile-tcl-filt
-lib/xvile/vile-texi-filt
-lib/xvile/vile-ti-filt
-lib/xvile/vile-txt-filt
-lib/xvile/vile-vile-filt
-lib/xvile/vile-vlog-filt
-lib/xvile/vile-wbt-filt
-lib/xvile/vile-xml-filt
-lib/xvile/vile-xq-filt
-lib/xvile/vile-xres-filt
-lib/xvile/vile-xs-filt
-lib/xvile/vile-yacc-filt
-@dirrm lib/xvile
-%%PORTDOCS%%share/doc/xvile/Vileserv.doc
-%%PORTDOCS%%share/doc/xvile/config.doc
-%%PORTDOCS%%share/doc/xvile/dir.doc
-%%PORTDOCS%%share/doc/xvile/filters.doc
-%%PORTDOCS%%share/doc/xvile/macros.doc
-%%PORTDOCS%%share/doc/xvile/menus.doc
-%%PORTDOCS%%share/doc/xvile/modes.doc
-%%PORTDOCS%%share/doc/xvile/oleauto.doc
-%%PORTDOCS%%share/doc/xvile/perl.doc
-%%PORTDOCS%%share/doc/xvile/visvile.doc
-@dirrmtry share/doc/xvile
-@unexec rm -f %D/share/xvile/vile/vilemenu.rc
-share/pixmaps/vile.xbm
-share/xvile/vile/color-ls.rc
-share/xvile/vile/complete.rc
-share/xvile/vile/dates.rc
-share/xvile/vile/digraphs.rc
-share/xvile/vile/gnugpg.rc
-share/xvile/vile/loaderrs.rc
-share/xvile/vile/manpage.rc
-share/xvile/vile/modes.rc
-share/xvile/vile/palettes.rc
-share/xvile/vile/pictmode.rc
-share/xvile/vile/search.rc
-share/xvile/vile/shifts.rc
-share/xvile/vile/showeach.rc
-share/xvile/vile/vileinit.rc
-share/xvile/vile/vileperl.rc
-share/xvile/vile/which.rc
-share/xvile/vile/vile.hlp
-share/xvile/vile/ant.keywords
-share/xvile/vile/as.keywords
-share/xvile/vile/as386.keywords
-share/xvile/vile/asm.keywords
-share/xvile/vile/au3.keywords
-share/xvile/vile/basic.keywords
-share/xvile/vile/bnf.keywords
-share/xvile/vile/c.keywords
-share/xvile/vile/cpp.keywords
-share/xvile/vile/css.keywords
-share/xvile/vile/filters.rc
-share/xvile/vile/pas.keywords
-share/xvile/vile/pc.keywords
-share/xvile/vile/ps.keywords
-share/xvile/vile/vile.keywords
-share/xvile/vile/vim.keywords
-share/xvile/vile/ada.keywords
-share/xvile/vile/awk.keywords
-share/xvile/vile/bat.keywords
-share/xvile/vile/cs.keywords
-share/xvile/vile/csh.keywords
-share/xvile/vile/cweb.keywords
-share/xvile/vile/dcl.keywords
-share/xvile/vile/def.keywords
-share/xvile/vile/delphi.keywords
-share/xvile/vile/diff.keywords
-share/xvile/vile/docbook.keywords
-share/xvile/vile/ecl.keywords
-share/xvile/vile/erl.keywords
-share/xvile/vile/esql.keywords
-share/xvile/vile/est.keywords
-share/xvile/vile/fdl.keywords
-share/xvile/vile/hs.keywords
-share/xvile/vile/html.keywords
-share/xvile/vile/imake.keywords
-share/xvile/vile/ini.keywords
-share/xvile/vile/iss.keywords
-share/xvile/vile/java.keywords
-share/xvile/vile/js.keywords
-share/xvile/vile/latex.keywords
-share/xvile/vile/lex.keywords
-share/xvile/vile/lisp.keywords
-share/xvile/vile/lua.keywords
-share/xvile/vile/m4.keywords
-share/xvile/vile/mail.keywords
-share/xvile/vile/mailcap.keywords
-share/xvile/vile/make.keywords
-share/xvile/vile/mcrl.keywords
-share/xvile/vile/midl.keywords
-share/xvile/vile/mvn.keywords
-share/xvile/vile/nr.keywords
-share/xvile/vile/nsis.keywords
-share/xvile/vile/objc.keywords
-share/xvile/vile/perl.keywords
-share/xvile/vile/php.keywords
-share/xvile/vile/py.keywords
-share/xvile/vile/pot.keywords
-share/xvile/vile/prolog.keywords
-share/xvile/vile/rb.keywords
-share/xvile/vile/rc.keywords
-share/xvile/vile/rcs.keywords
-share/xvile/vile/rexx.keywords
-share/xvile/vile/rpm.keywords
-share/xvile/vile/rtf.keywords
-share/xvile/vile/sccs.keywords
-share/xvile/vile/scheme.keywords
-share/xvile/vile/sh.keywords
-share/xvile/vile/sml.keywords
-share/xvile/vile/syntax.keywords
-share/xvile/vile/spell.rc
-share/xvile/vile/sql.keywords
-share/xvile/vile/tags.keywords
-share/xvile/vile/tbl.keywords
-share/xvile/vile/tc.keywords
-share/xvile/vile/tcl.keywords
-share/xvile/vile/tex.keywords
-share/xvile/vile/texi.keywords
-share/xvile/vile/ti.keywords
-share/xvile/vile/vb.keywords
-share/xvile/vile/vb6.keywords
-share/xvile/vile/vbs.keywords
-share/xvile/vile/vlog.keywords
-share/xvile/vile/wbt.keywords
-share/xvile/vile/xml.keywords
-share/xvile/vile/xq.keywords
-share/xvile/vile/xres.keywords
-share/xvile/vile/xs.keywords
-share/xvile/vile/xsl.keywords
-share/xvile/vile/yacc.keywords
-share/xvile/macros/color-ls.rc
-share/xvile/macros/complete.rc
-share/xvile/macros/dates.rc
-share/xvile/macros/digraphs.rc
-share/xvile/macros/gnugpg.rc
-share/xvile/macros/loaderrs.rc
-share/xvile/macros/manpage.rc
-share/xvile/macros/modes.rc
-share/xvile/macros/palettes.rc
-share/xvile/macros/pictmode.rc
-share/xvile/macros/search.rc
-share/xvile/macros/shifts.rc
-share/xvile/macros/showeach.rc
-share/xvile/macros/vileinit.rc
-share/xvile/macros/vilemenu.rc
-share/xvile/macros/vileperl.rc
-share/xvile/macros/vile-pager
-share/xvile/macros/which.rc
-@dirrm share/xvile/vile/doc
-@dirrm share/xvile/vile
-@dirrm share/xvile/macros
-@dirrm share/xvile
+lib/vile/atr2ansi
+lib/vile/atr2html
+lib/vile/atr2text
+lib/vile/vile-ada-filt%%SO_EXT%%
+lib/vile/vile-as-filt%%SO_EXT%%
+lib/vile/vile-asm-filt%%SO_EXT%%
+lib/vile/vile-au3-filt%%SO_EXT%%
+lib/vile/vile-awk-filt%%SO_EXT%%
+lib/vile/vile-basic-filt%%SO_EXT%%
+lib/vile/vile-bat-filt%%SO_EXT%%
+lib/vile/vile-bnf-filt%%SO_EXT%%
+lib/vile/vile-c-filt%%SO_EXT%%
+lib/vile/vile-cfg-filt%%SO_EXT%%
+lib/vile/vile-conf-filt%%SO_EXT%%
+lib/vile/vile-crypt
+lib/vile/vile-css-filt%%SO_EXT%%
+lib/vile/vile-cweb-filt%%SO_EXT%%
+lib/vile/vile-dcl-filt%%SO_EXT%%
+lib/vile/vile-def-filt%%SO_EXT%%
+lib/vile/vile-diff-filt%%SO_EXT%%
+lib/vile/vile-ecl-filt%%SO_EXT%%
+lib/vile/vile-erl-filt%%SO_EXT%%
+lib/vile/vile-esql-filt%%SO_EXT%%
+lib/vile/vile-est-filt%%SO_EXT%%
+lib/vile/vile-fdl-filt%%SO_EXT%%
+lib/vile/vile-hs-filt%%SO_EXT%%
+lib/vile/vile-html-filt%%SO_EXT%%
+lib/vile/vile-imake-filt%%SO_EXT%%
+lib/vile/vile-info-filt%%SO_EXT%%
+lib/vile/vile-ini-filt%%SO_EXT%%
+lib/vile/vile-iss-filt%%SO_EXT%%
+lib/vile/vile-key-filt%%SO_EXT%%
+lib/vile/vile-latex-filt%%SO_EXT%%
+lib/vile/vile-lex-filt%%SO_EXT%%
+lib/vile/vile-lisp-filt%%SO_EXT%%
+lib/vile/vile-lua-filt%%SO_EXT%%
+lib/vile/vile-m4-filt%%SO_EXT%%
+lib/vile/vile-mail-filt%%SO_EXT%%
+lib/vile/vile-mailcap-filt%%SO_EXT%%
+lib/vile/vile-make-filt%%SO_EXT%%
+lib/vile/vile-manfilt
+lib/vile/vile-mcrl-filt%%SO_EXT%%
+lib/vile/vile-midl-filt%%SO_EXT%%
+lib/vile/vile-mms-filt%%SO_EXT%%
+lib/vile/vile-nr-filt%%SO_EXT%%
+lib/vile/vile-pas-filt%%SO_EXT%%
+lib/vile/vile-perl-filt%%SO_EXT%%
+lib/vile/vile-php-filt%%SO_EXT%%
+lib/vile/vile-pot-filt%%SO_EXT%%
+lib/vile/vile-ps-filt%%SO_EXT%%
+lib/vile/vile-py-filt%%SO_EXT%%
+lib/vile/vile-rc-filt%%SO_EXT%%
+lib/vile/vile-rcs-filt%%SO_EXT%%
+lib/vile/vile-rexx-filt%%SO_EXT%%
+lib/vile/vile-rpm-filt%%SO_EXT%%
+lib/vile/vile-rtf-filt%%SO_EXT%%
+lib/vile/vile-ruby-filt%%SO_EXT%%
+lib/vile/vile-sccs-filt%%SO_EXT%%
+lib/vile/vile-scheme-filt%%SO_EXT%%
+lib/vile/vile-sed-filt%%SO_EXT%%
+lib/vile/vile-sh-filt%%SO_EXT%%
+lib/vile/vile-sml-filt%%SO_EXT%%
+lib/vile/vile-spell-filt%%SO_EXT%%
+lib/vile/vile-sql-filt%%SO_EXT%%
+lib/vile/vile-tags-filt%%SO_EXT%%
+lib/vile/vile-tbl-filt%%SO_EXT%%
+lib/vile/vile-tc-filt%%SO_EXT%%
+lib/vile/vile-tcl-filt%%SO_EXT%%
+lib/vile/vile-texi-filt%%SO_EXT%%
+lib/vile/vile-ti-filt%%SO_EXT%%
+lib/vile/vile-txt-filt%%SO_EXT%%
+lib/vile/vile-vile-filt%%SO_EXT%%
+lib/vile/vile-vlog-filt%%SO_EXT%%
+lib/vile/vile-wbt-filt%%SO_EXT%%
+lib/vile/vile-xml-filt%%SO_EXT%%
+lib/vile/vile-xq-filt%%SO_EXT%%
+lib/vile/vile-xres-filt%%SO_EXT%%
+lib/vile/vile-xs-filt%%SO_EXT%%
+lib/vile/vile-yacc-filt%%SO_EXT%%
+share/applications/lxvile.desktop
+share/applications/uxvile.desktop
+share/applications/xvile.desktop
+%%PORTDOCS%%%%DOCSDIR%%/Vileserv.doc
+%%PORTDOCS%%%%DOCSDIR%%/config.doc
+%%PORTDOCS%%%%DOCSDIR%%/dir.doc
+%%PORTDOCS%%%%DOCSDIR%%/filters.doc
+%%PORTDOCS%%%%DOCSDIR%%/macros.doc
+%%PORTDOCS%%%%DOCSDIR%%/menus.doc
+%%PORTDOCS%%%%DOCSDIR%%/modes.doc
+%%PORTDOCS%%%%DOCSDIR%%/oleauto.doc
+%%PORTDOCS%%%%DOCSDIR%%/perl.doc
+%%PORTDOCS%%%%DOCSDIR%%/visvile.doc
+share/pixmaps/vile.xpm
+%%DATADIR%%/ada.keywords
+%%DATADIR%%/ant.keywords
+%%DATADIR%%/as.keywords
+%%DATADIR%%/as386.keywords
+%%DATADIR%%/asm.keywords
+%%DATADIR%%/au3.keywords
+%%DATADIR%%/awk.keywords
+%%DATADIR%%/bash.keywords
+%%DATADIR%%/basic.keywords
+%%DATADIR%%/bat.keywords
+%%DATADIR%%/bnf.keywords
+%%DATADIR%%/c.keywords
+%%DATADIR%%/color-ls.rc
+%%DATADIR%%/complete.rc
+%%DATADIR%%/cpp.keywords
+%%DATADIR%%/cs.keywords
+%%DATADIR%%/csh.keywords
+%%DATADIR%%/css.keywords
+%%DATADIR%%/cweb.keywords
+%%DATADIR%%/dates.rc
+%%DATADIR%%/dcl.keywords
+%%DATADIR%%/def.keywords
+%%DATADIR%%/delphi.keywords
+%%DATADIR%%/diff.keywords
+%%DATADIR%%/digraphs.rc
+%%DATADIR%%/docbook.keywords
+%%DATADIR%%/ecl.keywords
+%%DATADIR%%/erl.keywords
+%%DATADIR%%/esql.keywords
+%%DATADIR%%/est.keywords
+%%DATADIR%%/fdl.keywords
+%%DATADIR%%/filters.rc
+%%DATADIR%%/gnugpg.rc
+%%DATADIR%%/hs.keywords
+%%DATADIR%%/html.keywords
+%%DATADIR%%/imake.keywords
+%%DATADIR%%/ini.keywords
+%%DATADIR%%/iss.keywords
+%%DATADIR%%/java.keywords
+%%DATADIR%%/js.keywords
+%%DATADIR%%/ksh.keywords
+%%DATADIR%%/latex.keywords
+%%DATADIR%%/lex.keywords
+%%DATADIR%%/lisp.keywords
+%%DATADIR%%/loaderrs.rc
+%%DATADIR%%/lua.keywords
+%%DATADIR%%/m4.keywords
+%%DATADIR%%/macros/color-ls.rc
+%%DATADIR%%/macros/complete.rc
+%%DATADIR%%/macros/dates.rc
+%%DATADIR%%/macros/digraphs.rc
+%%DATADIR%%/macros/gnugpg.rc
+%%DATADIR%%/macros/loaderrs.rc
+%%DATADIR%%/macros/manpage.rc
+%%DATADIR%%/macros/modes.rc
+%%DATADIR%%/macros/palettes.rc
+%%DATADIR%%/macros/pictmode.rc
+%%DATADIR%%/macros/search.rc
+%%DATADIR%%/macros/shifts.rc
+%%DATADIR%%/macros/showeach.rc
+%%DATADIR%%/macros/vileinit.rc
+%%DATADIR%%/macros/vilemenu.rc
+%%DATADIR%%/macros/vileperl.rc
+%%DATADIR%%/macros/which.rc
+%%DATADIR%%/mail.keywords
+%%DATADIR%%/mailcap.keywords
+%%DATADIR%%/make.keywords
+%%DATADIR%%/manpage.rc
+%%DATADIR%%/mcrl.keywords
+%%DATADIR%%/midl.keywords
+%%DATADIR%%/modes.rc
+%%DATADIR%%/mvn.keywords
+%%DATADIR%%/nr.keywords
+%%DATADIR%%/nsis.keywords
+%%DATADIR%%/objc.keywords
+%%DATADIR%%/palettes.rc
+%%DATADIR%%/pas.keywords
+%%DATADIR%%/pc.keywords
+%%PERL%%%%DATADIR%%/perl/Breadcrumbs.pm
+%%PERL%%%%DATADIR%%/perl/CaptHook.pm
+%%PERL%%%%DATADIR%%/perl/Glob2re.pm
+%%PERL%%%%DATADIR%%/perl/Help.pm
+%%PERL%%%%DATADIR%%/perl/Vile/Exporter.pm
+%%PERL%%%%DATADIR%%/perl/Vile/Manual.pm
+%%PERL%%%%DATADIR%%/perl/Vile.pm
+%%PERL%%%%DATADIR%%/perl/Vileserv.pm
+%%PERL%%%%DATADIR%%/perl/Visit.pm
+%%PERL%%%%DATADIR%%/perl/capture.pm
+%%PERL%%%%DATADIR%%/perl/dict.pm
+%%PERL%%%%DATADIR%%/perl/directory.pm
+%%PERL%%%%DATADIR%%/perl/dirlist.pm
+%%PERL%%%%DATADIR%%/perl/gdb.pm
+%%PERL%%%%DATADIR%%/perl/hgrep.pm
+%%PERL%%%%DATADIR%%/perl/lock.pm
+%%PERL%%%%DATADIR%%/perl/man.pm
+%%PERL%%%%DATADIR%%/perl/mime.pl
+%%PERL%%%%DATADIR%%/perl/plugins.pl
+%%PERL%%%%DATADIR%%/perl/search.pm
+%%PERL%%%%DATADIR%%/perl/shell.pm
+%%PERL%%%%DATADIR%%/perl/spell.pm
+%%PERL%%%%DATADIR%%/perl/winops.pm
+%%DATADIR%%/perl.keywords
+%%DATADIR%%/php.keywords
+%%DATADIR%%/pictmode.rc
+%%DATADIR%%/pot.keywords
+%%DATADIR%%/prolog.keywords
+%%DATADIR%%/ps.keywords
+%%DATADIR%%/py.keywords
+%%DATADIR%%/rb.keywords
+%%DATADIR%%/rc.keywords
+%%DATADIR%%/rcs.keywords
+%%DATADIR%%/rexx.keywords
+%%DATADIR%%/rpm.keywords
+%%DATADIR%%/rtf.keywords
+%%DATADIR%%/sccs.keywords
+%%DATADIR%%/scheme.keywords
+%%DATADIR%%/search.rc
+%%DATADIR%%/sh.keywords
+%%DATADIR%%/shifts.rc
+%%DATADIR%%/showeach.rc
+%%DATADIR%%/sml.keywords
+%%DATADIR%%/spell.rc
+%%DATADIR%%/sql.keywords
+%%DATADIR%%/syntax.keywords
+%%DATADIR%%/tags.keywords
+%%DATADIR%%/tbl.keywords
+%%DATADIR%%/tc.keywords
+%%DATADIR%%/tcl.keywords
+%%DATADIR%%/tex.keywords
+%%DATADIR%%/texi.keywords
+%%DATADIR%%/ti.keywords
+%%DATADIR%%/vb.keywords
+%%DATADIR%%/vb6.keywords
+%%DATADIR%%/vbs.keywords
+%%DATADIR%%/vile.hlp
+%%DATADIR%%/vile.keywords
+%%DATADIR%%/vileinit.rc
+%%DATADIR%%/vilemenu.rc
+%%DATADIR%%/vileperl.rc
+%%DATADIR%%/vim.keywords
+%%DATADIR%%/vlog.keywords
+%%DATADIR%%/wbt.keywords
+%%DATADIR%%/which.rc
+%%DATADIR%%/xml.keywords
+%%DATADIR%%/xq.keywords
+%%DATADIR%%/xres.keywords
+%%DATADIR%%/xs.keywords
+%%DATADIR%%/xsl.keywords
+%%DATADIR%%/yacc.keywords
+%%DATADIR%%/zsh.keywords
+%%PERL%%@dirrm %%DATADIR%%/perl/Vile
+%%PERL%%@dirrm %%DATADIR%%/perl
+@dirrm %%DATADIR%%/macros
+@dirrm %%DATADIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrmtry share/applications
+@dirrm lib/vile



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302071421.r17ELINh079249>