- Split ghostscript into X11-independent and -dependent parts:

* print/ghostscript{7,8,9,9-agpl}-base

   Installs Ghostscript binary, libgs, and related files.
   These ports do not depend on X11 libraries (i.e. x11* devices
   are not available).  USES=ghostscript will set dependency on
   one of them depending on GHOSTSCRIPT_DEFAULT.

   The default device is set to "display" or "bbox".

 * print/ghostscript{7,8,9,9-agpl}-x11

   Installs a shared library which provides X11 support to
   the installed Ghostscript binaries.  x11* devices will be
   enabled when the library is available.

   This depends on *-base (RUN_DEPENDS).  USES=ghostscript:x11
   will set dependency on one of them.

- Fix integer overflow reported as CVE-2015-3228.

- Update Uses/ghostscript.mk:

 * Add x11 keyword.  nox11 keyword is now obsolete.

 * Use packagename in *_DEPENDS line to prevent relationship between
   -base and -x11 packages from being broken.

- Fix x11/nox11 keyword and bump PORTREVISION in ports using
  USES=ghostscript to update dependency of pre-compiled packages.
This commit is contained in:
Hiroki Sato 2015-08-22 17:48:35 +00:00
parent cb9ed09fda
commit 27470e1676
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=395047
475 changed files with 9011 additions and 3310 deletions

8
MOVED
View file

@ -7840,3 +7840,11 @@ www/hs-yesod-platform||2015-08-20|Removed: Upstream support is discontinued.
www/hs-yesod-routes||2015-08-20|Removed: Upstream support is discontinued.
x11-toolkits/hs-gtkglext||2015-08-20|Removed: Upstream support is discontinued.
textproc/prosper||2015-08-22|Removed: maintainted in print/texlive-texmf.
print/ghostscript7|print/ghostscript7-x11|2015-08-22|Split into print/ghostscript7-base and print/ghostscript7-x11
print/ghostscript7-nox11|print/ghostscript7-base|2015-08-22|Integrated into print/ghostscript7-base
print/ghostscript8|print/ghostscript8-x11|2015-08-22|Split into print/ghostscript8-base and print/ghostscript8-x11
print/ghostscript8-nox11|print/ghostscript8-base|2015-08-22|Integrated into print/ghostscript8-base
print/ghostscript9|print/ghostscript9-x11|2015-08-22|Split into print/ghostscript9-base and print/ghostscript9-x11
print/ghostscript9-nox11|print/ghostscript9-base|2015-08-22|Integrated into print/ghostscript9-base
print/ghostscript9-agpl|print/ghostscript9-agpl-x11|2015-08-22|Split into print/ghostscript9-agpl-base and print/ghostscript9-agpl-x11
print/ghostscript9-agpl-nox11|print/ghostscript9-agpl-base|2015-08-22|Integrated into print/ghostscript9-agpl-base

View file

@ -4,7 +4,7 @@
#
# Feature: ghostscript
# Usage: USES=ghostscript or USES=ghostscript:args
# Valid ARGS: <version>, build, run, nox11
# Valid ARGS: <version>, build, run, x11
#
# version The chooseable versions are 7, 8 and 9. If no version is
# specified version 9 is selected.
@ -13,7 +13,7 @@
# USES=ghostscript:run # Use the set default Ghostscript as a run dependancy
# USES=ghostscript:8,build # Use ghostscript 8 as a build dependancy.
#
# nox11 Indicate that the Ghostscript nox11 port is required.
# x11 Indicate that X11 support is required.
# build Indicates that Ghostscript is needed at build time and adds
# it as BUILD_DEPENDS.
# run Indicates that Ghostscript is needed at run time and adds
@ -32,7 +32,7 @@ _GS_VERSION= 7 8 9 agpl
_GS_ARGS= ${ghostscript_ARGS}
.if ${_GS_ARGS:N[789]:Nnox11:Nbuild:Nrun}
.if ${_GS_ARGS:N[789]:Nagpl:Nx11:Nbuild:Nrun}
IGNORE?= Unknown ghostscript argument ${_GS_ARGS}
.endif
@ -84,23 +84,28 @@ _GS_SELECTED?= 7
IGNORE?= Invalid ghostscript argument or GHOSTSCRIPT_DEFAULT
.endif
# Resolve minor version number for X11.so library.
.if !empty(_GS_SELECTED:M9) && defined(_GS_AGPL_SUFFIX)
_GS_VERSION_MINOR= 9.16_2
.elif !empty(_GS_SELECTED:M9)
_GS_VERSION_MINOR= 9.06_11
.elif !empty(_GS_SELECTED:M8)
_GS_VERSION_MINOR= 8.71_19
.elif !empty(_GS_SELECTED:M7)
_GS_VERSION_MINOR= 7.07_32
.endif
# dependencies
_GS_PORT= ghostscript${_GS_SELECTED}${_GS_AGPL_SUFFIX}${_GS_NOX11_SUFFIX}
_GS_PORT= ghostscript${_GS_SELECTED}${_GS_AGPL_SUFFIX}-base
_GS_X11_PORT= ghostscript${_GS_SELECTED}${_GS_AGPL_SUFFIX}-x11
.undef _GS_NOX11_SUFFIX
.if ${_GS_ARGS:Mnox11} || \
(defined(OPTIONS_DEFINE) && defined(PORT_OPTIONS) && \
${OPTIONS_DEFINE:MX11} && ${PORT_OPTIONS:MX11} == "")
# XXX
#DEPENDS_ARGS+= print_${_GS_PORT}_UNSET_FORCE+=X11
_GS_NOX11_SUFFIX= -nox11
.for type in BUILD RUN
.if defined(_GS_${type}_DEP)
${type}_DEPENDS+= ${_GS_PORT}>=${_GS_VERSION_MINOR}:${PORTSDIR}/print/${_GS_PORT}
.if ${_GS_ARGS:Mx11}
${type}_DEPENDS+= ${_GS_X11_PORT}>=${_GS_VERSION_MINOR}:${PORTSDIR}/print/${_GS_X11_PORT}
.endif
.if defined(_GS_BUILD_DEP)
BUILD_DEPENDS+= gs:${PORTSDIR}/print/${_GS_PORT}
.endif
.if defined(_GS_RUN_DEP)
RUN_DEPENDS+= gs:${PORTSDIR}/print/${_GS_PORT}
.endif
.endfor
.endif # _INCLUDE_USES_GHOSTSCRIPT_MK

View file

@ -5,6 +5,27 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
20150822:
AFFECTS: users of print/ghostscript*
AUTHOR: hrs@FreeBSD.org
print/ghostscript{7,8,9,9-agpl} have been split into
print/ghostscript{7,8,9,9-agpl}-{base,x11}.
print/ghostscript*-nox11 ports have been removed.
The -base installs Ghostscript binaries, libgs, and other data files
and it depends on no X11 library. The -x11 installs a small shared
library to enable x11* devices in the installed -base package.
In most cases, Ghostscript is installed as a dependency. A port/package
which requires Ghostscript will automatically pick up -base, and
when x11* devices required it will pick up -x11 in addition.
If one wants to install Ghostscript manually and full compatibility
with the previous versions, just install -x11 because it installs
-base as a dependency. Combination of the two provides the same
functionality as before.
20150821:
AFFECTS: users of security/openssh-portable
AUTHOR: bdrewery@FreeBSD.org

View file

@ -3,6 +3,7 @@
PORTNAME= xcircuit
PORTVERSION= 3.8.78
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= cad
MASTER_SITES= http://opencircuitdesign.com/xcircuit/archive/ \
@ -16,7 +17,7 @@ LICENSE= GPLv2
OPTIONS_DEFINE= EXAMPLES
USE_XORG= xpm xscrnsaver xt
USES= tk ghostscript:run gmake tar:tgz
USES= tk ghostscript:x11,run gmake tar:tgz
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-tcl=${TCL_LIBDIR} \
--with-tk=${TK_LIBDIR}

View file

@ -3,7 +3,7 @@
PORTNAME= efax-gtk
PORTVERSION= 3.2.13
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= comms
MASTER_SITES= SF
EXTRACT_SUFX= .src.tgz

View file

@ -3,7 +3,7 @@
PORTNAME= hylafax
PORTVERSION= 6.0.6
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= comms
MASTER_SITES= ftp://ftp.hylafax.org/source/

View file

@ -3,7 +3,7 @@
PORTNAME= tkhylafax
PORTVERSION= 3.2b
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= comms tk
MASTER_SITES= ftp://ftp.hylafax.org/contrib/tkhylafax/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/b/beta/}
@ -14,7 +14,7 @@ COMMENT= Tcl/tk interface to Sam Leffler's fax package
RUN_DEPENDS= sendfax:${PORTSDIR}/comms/hylafax \
gv:${PORTSDIR}/print/gv
USES+= ghostscript:run tk:run
USES= tk:run
WRKSRC= ${WRKDIR}/tkhylafax
MAKE_ARGS= STAGEDIR=${STAGEDIR} PREFIX=${STAGEDIR}${PREFIX} TCLSH=${TCLSH} WISH=${WISH}

View file

@ -3,7 +3,7 @@
PORTNAME= etask
PORTVERSION= 0.3.91
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= deskutils elisp
MASTER_SITES= http://members.chello.at/rene.weichselbaum/ \
http://dryice.name/computer/FreeBSD/distfiles/

View file

@ -3,6 +3,7 @@
PORTNAME= aegis
PORTVERSION= 4.25
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= SF
DISTVERSIONSUFFIX= .D510
@ -12,11 +13,10 @@ COMMENT= Transaction-based software configuration management system
LICENSE= GPLv3
BUILD_DEPENDS= ps2pdf:${PORTSDIR}/print/ghostscript9-nox11
LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl
RUN_DEPENDS= tkdiff:${PORTSDIR}/textproc/tkdiff
USES= gettext perl5 tk
USES= gettext ghostscript perl5 tk
USE_GNOME= libxml2
USE_GCC= any
GNU_CONFIGURE= yes

View file

@ -4,7 +4,7 @@
PORTNAME= doxygen
PORTVERSION= 1.8.10
PORTEPOCH= 2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/ \
http://ftp.stack.nl/pub/users/dimitri/

View file

@ -3,6 +3,7 @@
PORTNAME= gdcm
PORTVERSION= ${GDCM_MAJOR}.${GDCM_MINOR}.${GDCM_PATCH}
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= SF/gdcm/gdcm%202.x/GDCM%20${PORTVERSION}

View file

@ -3,7 +3,7 @@
PORTNAME= libexplain
PORTVERSION= 1.3.${PATCHLEVEL}
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION:R}
DISTNAME= ${PORTNAME}-${PORTVERSION:R}

View file

@ -3,18 +3,17 @@
PORTNAME= srecord
PORTVERSION= 1.64
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= brooks@FreeBSD.org
COMMENT= Collection of powerful tools for manipulating EPROM load files
BUILD_DEPENDS= ps2pdf:${PORTSDIR}/print/ghostscript9 \
${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt
USES= libtool:build
USES= ghostscript libtool:build
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib

View file

@ -3,7 +3,7 @@
PORTNAME= ted
PORTVERSION= 2.23
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= editors
MASTER_SITES= ftp://ftp.nluug.nl/pub/editors/ted/ \
http://fossies.org/linux/misc/
@ -26,7 +26,7 @@ GTK2_DESC= Use GTK2 instead of MOTIF
WRKSRC= ${WRKDIR}/Ted-${PORTVERSION}
USE_XORG= xext xft
USES= ghostscript:run iconv
USES= ghostscript:x11,run iconv
GNU_CONFIGURE= yes
MAKE_ENV= DEF_AFMDIR="-DAFMDIR=\"\\\"${AFMDIR}/\\\"\"" \
DEF_INDDIR="-DINDDIR=\"\\\"${INDDIR}/\\\"\"" \

View file

@ -3,7 +3,7 @@
PORTNAME= texmacs
PORTVERSION= 1.0.7.21
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= editors print
MASTER_SITES= ftp://ftp.texmacs.org/TeXmacs/tmftp/source/ \
http://www.predatorlabs.net/dl/
@ -40,7 +40,7 @@ PDF_DESC= Experimental PDF renderer
FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2
FREETYPE_CONFIGURE_WITH=freetype=linked
GHOSTSCRIPT_USES= ghostscript
GHOSTSCRIPT_USES= ghostscript:x11
GHOSTSCRIPT_CONFIGURE_WITH= gs=yes
ICONV_USES= iconv

View file

@ -3,7 +3,7 @@
PORTNAME= texmaker
PORTVERSION= 4.4.1
PORTREVISION= 1
PORTREVISION= 2
PORTEPOCH= 3
CATEGORIES= editors
MASTER_SITES= http://www.xm1math.net/texmaker/
@ -13,7 +13,7 @@ COMMENT= LaTeX Development Environment
LIB_DEPENDS= libpoppler.so:${PORTSDIR}/graphics/poppler
USES= desktop-file-utils ghostscript:run pkgconfig qmake tar:bzip2
USES= desktop-file-utils ghostscript:x11,run pkgconfig qmake tar:bzip2
_USE_QT4= gui network xml webkit \
moc_build rcc_build uic_build
_USE_QT5= concurrent network printsupport script webkit widgets \

View file

@ -2,7 +2,7 @@
PORTNAME= texstudio
PORTVERSION= 2.9.4
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= editors
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/TeXstudio%20${PORTVERSION}

View file

@ -3,7 +3,7 @@
PORTNAME= GraphicsMagick
PORTVERSION= 1.3.20
PORTREVISION= 5
PORTREVISION= 6
PORTEPOCH= 1
CATEGORIES= graphics
MASTER_SITES= SF \

View file

@ -2,7 +2,7 @@
PORTNAME= ImageMagick
DISTVERSION= 6.9.1-10
PORTREVISION= 1
PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= graphics perl5
MASTER_SITES= http://www.imagemagick.org/download/ \
@ -221,9 +221,9 @@ PLIST_SUB+= TIFF="@comment "
.if ${PORT_OPTIONS:MGSLIB}
CONFIGURE_ARGS+= --with-gslib
. if ${PORT_OPTIONS:MX11}
USES+= ghostscript
USES+= ghostscript:x11
. else
USES+= ghostscript:nox11
USES+= ghostscript
. endif
.else
CONFIGURE_ARGS+= --without-gslib
@ -358,9 +358,9 @@ PLIST_SUB+= PANGO="@comment "
# PDF (Adobe Portable Document Format) support
.if ${PORT_OPTIONS:MPDF}
. if ${PORT_OPTIONS:MX11}
USES+= ghostscript
USES+= ghostscript:x11
. else
USES+= ghostscript:nox11
USES+= ghostscript
. endif
.endif
@ -385,9 +385,9 @@ INSTALL_TARGET= install-strip
.if ${PORT_OPTIONS:MTESTS}
. if ${PORT_OPTIONS:MX11}
USES+= ghostscript:build
USES+= ghostscript:x11,build
. else
USES+= ghostscript:build,nox11
USES+= ghostscript:build
. endif
.endif

View file

@ -2,7 +2,7 @@
PORTNAME= ImageMagick
DISTVERSION= 7.0.0-0~beta${DATE}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= graphics perl5
MASTER_SITES= http://www.imagemagick.org/download/ \
http://www.imagemagick.org/download/beta/ \
@ -227,9 +227,9 @@ PLIST_SUB+= TIFF="@comment "
.if ${PORT_OPTIONS:MGSLIB}
CONFIGURE_ARGS+= --with-gslib
. if ${PORT_OPTIONS:MX11}
USES+= ghostscript
USES+= ghostscript:x11
. else
USES+= ghostscript:nox11
USES+= ghostscript
. endif
.else
CONFIGURE_ARGS+= --without-gslib
@ -364,9 +364,9 @@ PLIST_SUB+= PANGO="@comment "
# PDF (Adobe Portable Document Format) support
.if ${PORT_OPTIONS:MPDF}
. if ${PORT_OPTIONS:MX11}
USES+= ghostscript
USES+= ghostscript:x11
. else
USES+= ghostscript:nox11
USES+= ghostscript
. endif
.endif
@ -391,9 +391,9 @@ INSTALL_TARGET= install-strip
.if ${PORT_OPTIONS:MTESTS}
. if ${PORT_OPTIONS:MX11}
USES+= ghostscript:build
USES+= ghostscript:x11,build
. else
USES+= ghostscript:build,nox11
USES+= ghostscript:build
. endif
.endif

View file

@ -3,7 +3,7 @@
PORTNAME= cinepaint
DISTVERSION= 1.0-4
PORTREVISION= 9
PORTREVISION= 10
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/CinePaint/CinePaint-${DISTVERSION}

View file

@ -3,7 +3,7 @@
PORTNAME= eps2png
PORTVERSION= 2.7
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= graphics
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:JV

View file

@ -3,7 +3,7 @@
PORTNAME= epstool
PORTVERSION= 3.08
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= graphics
MASTER_SITES= LOCAL/bf

View file

@ -3,7 +3,7 @@
PORTNAME?= gimp-app
PORTVERSION= 2.8.14
PORTREVISION?= 3
PORTREVISION?= 4
PORTEPOCH?= 1
CATEGORIES?= graphics gnome
MASTER_SITES= GIMP/gimp/v${PORTVERSION:R}

View file

@ -3,7 +3,7 @@
PORTNAME= gle-graphics
DISTVERSION= 4.2.4cf
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= graphics print
MASTER_SITES= SF/glx/gle4%20%28Current%20Active%20Version%29/${DISTVERSION:C,.$,,1}
DISTNAME= ${PORTNAME}-${DISTVERSION}-src

View file

@ -3,7 +3,7 @@
PORTNAME= imgtops
PORTVERSION= 1.0
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= graphics
MASTER_SITES= SF

View file

@ -3,7 +3,7 @@
PORTNAME= impressive
PORTVERSION= 0.10.3
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/Impressive/${PORTVERSION}/
DISTNAME= Impressive-${PORTVERSION}

View file

@ -2,6 +2,7 @@
PORTNAME= klatexformula
PORTVERSION= 3.2.11
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

View file

@ -3,7 +3,7 @@
PORTNAME= images
PORTVERSION= 4.0.1
PORTREVISION= 4
PORTREVISION= 5
PORTEPOCH= 2
CATEGORIES= graphics
MASTER_SITES= https://bitbucket.org/camlspotter/camlimages/get/

View file

@ -3,6 +3,7 @@
PORTNAME= ocrfeeder
PORTVERSION= 0.8.1
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= GNOME

View file

@ -3,7 +3,7 @@
PORTNAME= pstoedit
PORTVERSION= 3.70
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= graphics print
MASTER_SITES= SF

View file

@ -3,7 +3,7 @@
PORTNAME= pstoepsi
PORTVERSION= 20020711
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= graphics
MASTER_SITES= ftp://bourbon.usc.edu/pub/tgif/tools/pstoepsi/
DISTFILES= pstoepsi README.this-site

View file

@ -3,7 +3,7 @@
PORTNAME= chart
PORTVERSION= 1.39
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= graphics python
MASTER_SITES= http://download.gna.org/pychart/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -3,6 +3,7 @@
PORTNAME= sam2p
PORTVERSION= 0.49.2
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= graphics
MASTER_SITES= GOOGLE_CODE

View file

@ -3,7 +3,7 @@
PORTNAME= xournal
PORTVERSION= 0.4.8
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= SF

View file

@ -3,6 +3,7 @@
PORTNAME= xpaint
PORTVERSION= 2.9.10.3
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= SF/sf-${PORTNAME}/sf-${PORTNAME}/${PORTNAME}-${PORTVERSION:R}

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pdf_viewer
PORTREVISION= 1
PORTREVISION= 2
COMMENT= PDF and PostScript viewer plugin for Claws Mail

View file

@ -3,7 +3,7 @@
PORTNAME?= R
PORTVERSION= 3.0.2
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= math lang
MASTER_SITES= http://cran.r-project.org/%SUBDIR%/ \
ftp://cran.r-project.org/pub/R/%SUBDIR%/ \

View file

@ -3,7 +3,7 @@
PORTNAME= asymptote
PORTVERSION= 2.32
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= math
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}
DISTNAME= ${PORTNAME}-${PORTVERSION}.src

View file

@ -3,6 +3,7 @@
PORTNAME= plplot
PORTVERSION= 5.11.0
PORTREVISION= 1
CATEGORIES= math science
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20Source

View file

@ -3,7 +3,7 @@
PORTNAME= pspresent
PORTVERSION= 1.3
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= misc
MASTER_SITES= http://www.zmatt.net/pspresent/
@ -13,7 +13,7 @@ COMMENT= Full-screen slide shows of postscript files
LICENSE= GPLv2
USE_XORG= x11 xext xinerama
USES= ghostscript:run
USES= ghostscript:x11,run
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LDLIBS="${LDFLAGS}"
ALL_TARGET= pspresent

View file

@ -3,6 +3,7 @@
PORTNAME= lives
PORTVERSION= 2.4.1
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}/

View file

@ -63,17 +63,17 @@
SUBDIR += frescobaldi
SUBDIR += ft2demos
SUBDIR += ggv
SUBDIR += ghostscript7
SUBDIR += ghostscript7-base
SUBDIR += ghostscript7-commfont
SUBDIR += ghostscript7-jpnfont
SUBDIR += ghostscript7-korfont
SUBDIR += ghostscript7-nox11
SUBDIR += ghostscript8
SUBDIR += ghostscript8-nox11
SUBDIR += ghostscript9
SUBDIR += ghostscript9-agpl
SUBDIR += ghostscript9-agpl-nox11
SUBDIR += ghostscript9-nox11
SUBDIR += ghostscript7-x11
SUBDIR += ghostscript8-base
SUBDIR += ghostscript8-x11
SUBDIR += ghostscript9-agpl-base
SUBDIR += ghostscript9-agpl-x11
SUBDIR += ghostscript9-base
SUBDIR += ghostscript9-x11
SUBDIR += gimp-gutenprint
SUBDIR += gl2ps
SUBDIR += gnome-cups-manager

View file

@ -3,7 +3,7 @@
PORTNAME= apsfilter
PORTVERSION= 7.2.8
PORTREVISION= 14
PORTREVISION= 15
CATEGORIES= print
MASTER_SITES= http://www.apsfilter.org/download/
DIST_SUBDIR= apsfilter

View file

@ -3,10 +3,10 @@
PORTNAME= auctex
PORTVERSION= 11.88
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= print elisp
MASTER_SITES= GNU
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
MAINTAINER= hrs@FreeBSD.org
COMMENT= Integrated environment for writing LaTeX using GNU Emacs
@ -14,25 +14,23 @@ COMMENT= Integrated environment for writing LaTeX using GNU Emacs
LICENSE= GPLv3
NOT_FOR_ARCHS= ia64
USE_TEX= latex
USES= ghostscript
USE_EMACS= yes
USE_TEX= latex texhash
TEXHASHDIRS= ${TEXMFDIR}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-lispdir=${PREFIX}/${LISPDIR} \
--with-auto-dir=${PREFIX}/${LISPDIR}/auctex/auto \
--with-texmf-dir=${PREFIX}/${TEXMFDIR}
DOCS_CONFIGURE_ON= --docdir=${DOCSDIR}
DOCS_CONFIGURE_OFF= WITHOUT_AUCTEX_DOCSDIR=yes
CONFIGURE_ARGS= --with-lispdir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} \
--with-auto-dir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/auctex/auto \
--with-texmf-dir=${PREFIX}/${TEXMFDIR}
PORTDOCS= tex-ref.pdf
INFO= auctex preview-latex
LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}
PLIST_SUB+= LISPDIR=${LISPDIR} \
TEXMFDIR=${TEXMFDIR} \
MKTEXLSR=${MKTEXLSR}
PLIST_SUB= TEXMFDIR=${TEXMFDIR}
SUB_FILES= pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message
OPTIONS_DEFINE= DOCS
OPTIONS_DEFAULT=DOCS
DOCS_CONFIGURE_ON= --docdir=${DOCSDIR}
DOCS_CONFIGURE_OFF= WITHOUT_AUCTEX_DOCSDIR=yes
.include <bsd.port.mk>

View file

@ -1,393 +1,393 @@
%%LISPDIR%%/auctex.el
%%LISPDIR%%/auctex/.nosearch
%%LISPDIR%%/auctex/auto/.nosearch
%%LISPDIR%%/auctex/bib-cite.el
%%LISPDIR%%/auctex/bib-cite.elc
%%LISPDIR%%/auctex/context-en.el
%%LISPDIR%%/auctex/context-en.elc
%%LISPDIR%%/auctex/context-nl.el
%%LISPDIR%%/auctex/context-nl.elc
%%LISPDIR%%/auctex/context.el
%%LISPDIR%%/auctex/context.elc
%%LISPDIR%%/auctex/font-latex.el
%%LISPDIR%%/auctex/font-latex.elc
%%LISPDIR%%/auctex/images/amstex.xpm
%%LISPDIR%%/auctex/images/bibtex.xpm
%%LISPDIR%%/auctex/images/dropdown.xpm
%%LISPDIR%%/auctex/images/dvipdf.xpm
%%LISPDIR%%/auctex/images/dvips.xpm
%%LISPDIR%%/auctex/images/error.xpm
%%LISPDIR%%/auctex/images/exec.xpm
%%LISPDIR%%/auctex/images/execbibtex.xpm
%%LISPDIR%%/auctex/images/execdvips.xpm
%%LISPDIR%%/auctex/images/execerror.xpm
%%LISPDIR%%/auctex/images/execpdftex.xpm
%%LISPDIR%%/auctex/images/exectex.xpm
%%LISPDIR%%/auctex/images/execviewdvi.xpm
%%LISPDIR%%/auctex/images/execviewpdf.xpm
%%LISPDIR%%/auctex/images/execviewps.xpm
%%LISPDIR%%/auctex/images/gv.xpm
%%LISPDIR%%/auctex/images/jumpdvi.xpm
%%LISPDIR%%/auctex/images/ltx-symb-turn-off.xpm
%%LISPDIR%%/auctex/images/ltx-symb-turn-on.xpm
%%LISPDIR%%/auctex/images/pdftex.xpm
%%LISPDIR%%/auctex/images/prverr16.xpm
%%LISPDIR%%/auctex/images/prverr20.xpm
%%LISPDIR%%/auctex/images/prverr24.xbm
%%LISPDIR%%/auctex/images/prverr24.xpm
%%LISPDIR%%/auctex/images/prvtex-cap-up.xpm
%%LISPDIR%%/auctex/images/prvtex12.xbm
%%LISPDIR%%/auctex/images/prvtex12.xpm
%%LISPDIR%%/auctex/images/prvtex16.xbm
%%LISPDIR%%/auctex/images/prvtex16.xpm
%%LISPDIR%%/auctex/images/prvtex20.xpm
%%LISPDIR%%/auctex/images/prvtex24.xbm
%%LISPDIR%%/auctex/images/prvtex24.xpm
%%LISPDIR%%/auctex/images/prvwrk12.xpm
%%LISPDIR%%/auctex/images/prvwrk14.xpm
%%LISPDIR%%/auctex/images/prvwrk16.xpm
%%LISPDIR%%/auctex/images/prvwrk20.xpm
%%LISPDIR%%/auctex/images/prvwrk24.xbm
%%LISPDIR%%/auctex/images/prvwrk24.xpm
%%LISPDIR%%/auctex/images/pspdf.xpm
%%LISPDIR%%/auctex/images/sep.xpm
%%LISPDIR%%/auctex/images/spell.xpm
%%LISPDIR%%/auctex/images/tex.xpm
%%LISPDIR%%/auctex/images/view.xpm
%%LISPDIR%%/auctex/images/viewdvi.xpm
%%LISPDIR%%/auctex/images/viewpdf.xpm
%%LISPDIR%%/auctex/images/viewps.xpm
%%LISPDIR%%/auctex/latex.el
%%LISPDIR%%/auctex/latex.elc
%%LISPDIR%%/auctex/multi-prompt.el
%%LISPDIR%%/auctex/multi-prompt.elc
%%LISPDIR%%/auctex/plain-tex.el
%%LISPDIR%%/auctex/plain-tex.elc
%%LISPDIR%%/auctex/preview.el
%%LISPDIR%%/auctex/preview.elc
%%LISPDIR%%/auctex/prv-emacs.el
%%LISPDIR%%/auctex/prv-emacs.elc
%%LISPDIR%%/auctex/style/.nosearch
%%LISPDIR%%/auctex/style/CJK.el
%%LISPDIR%%/auctex/style/CJK.elc
%%LISPDIR%%/auctex/style/CJKutf8.el
%%LISPDIR%%/auctex/style/CJKutf8.elc
%%LISPDIR%%/auctex/style/MinionPro.el
%%LISPDIR%%/auctex/style/MinionPro.elc
%%LISPDIR%%/auctex/style/acro.el
%%LISPDIR%%/auctex/style/acro.elc
%%LISPDIR%%/auctex/style/acronym.el
%%LISPDIR%%/auctex/style/acronym.elc
%%LISPDIR%%/auctex/style/afterpage.el
%%LISPDIR%%/auctex/style/afterpage.elc
%%LISPDIR%%/auctex/style/alltt.el
%%LISPDIR%%/auctex/style/alltt.elc
%%LISPDIR%%/auctex/style/alphanum.el
%%LISPDIR%%/auctex/style/alphanum.elc
%%LISPDIR%%/auctex/style/amsart.el
%%LISPDIR%%/auctex/style/amsart.elc
%%LISPDIR%%/auctex/style/amsbook.el
%%LISPDIR%%/auctex/style/amsbook.elc
%%LISPDIR%%/auctex/style/amsbsy.el
%%LISPDIR%%/auctex/style/amsbsy.elc
%%LISPDIR%%/auctex/style/amsmath.el
%%LISPDIR%%/auctex/style/amsmath.elc
%%LISPDIR%%/auctex/style/amsopn.el
%%LISPDIR%%/auctex/style/amsopn.elc
%%LISPDIR%%/auctex/style/amssymb.el
%%LISPDIR%%/auctex/style/amssymb.elc
%%LISPDIR%%/auctex/style/amstex.el
%%LISPDIR%%/auctex/style/amstex.elc
%%LISPDIR%%/auctex/style/amstext.el
%%LISPDIR%%/auctex/style/amstext.elc
%%LISPDIR%%/auctex/style/amsthm.el
%%LISPDIR%%/auctex/style/amsthm.elc
%%LISPDIR%%/auctex/style/array.el
%%LISPDIR%%/auctex/style/array.elc
%%LISPDIR%%/auctex/style/article.el
%%LISPDIR%%/auctex/style/article.elc
%%LISPDIR%%/auctex/style/austrian.el
%%LISPDIR%%/auctex/style/austrian.elc
%%LISPDIR%%/auctex/style/babel.el
%%LISPDIR%%/auctex/style/babel.elc
%%LISPDIR%%/auctex/style/beamer.el
%%LISPDIR%%/auctex/style/beamer.elc
%%LISPDIR%%/auctex/style/biblatex.el
%%LISPDIR%%/auctex/style/biblatex.elc
%%LISPDIR%%/auctex/style/bigdelim.el
%%LISPDIR%%/auctex/style/bigdelim.elc
%%LISPDIR%%/auctex/style/bigstrut.el
%%LISPDIR%%/auctex/style/bigstrut.elc
%%LISPDIR%%/auctex/style/bm.el
%%LISPDIR%%/auctex/style/bm.elc
%%LISPDIR%%/auctex/style/book.el
%%LISPDIR%%/auctex/style/book.elc
%%LISPDIR%%/auctex/style/booktabs.el
%%LISPDIR%%/auctex/style/booktabs.elc
%%LISPDIR%%/auctex/style/bulgarian.el
%%LISPDIR%%/auctex/style/bulgarian.elc
%%LISPDIR%%/auctex/style/captcont.el
%%LISPDIR%%/auctex/style/captcont.elc
%%LISPDIR%%/auctex/style/cleveref.el
%%LISPDIR%%/auctex/style/cleveref.elc
%%LISPDIR%%/auctex/style/comment.el
%%LISPDIR%%/auctex/style/comment.elc
%%LISPDIR%%/auctex/style/csquotes.el
%%LISPDIR%%/auctex/style/csquotes.elc
%%LISPDIR%%/auctex/style/czech.el
%%LISPDIR%%/auctex/style/czech.elc
%%LISPDIR%%/auctex/style/danish.el
%%LISPDIR%%/auctex/style/danish.elc
%%LISPDIR%%/auctex/style/dinbrief.el
%%LISPDIR%%/auctex/style/dinbrief.elc
%%LISPDIR%%/auctex/style/dk-bib.el
%%LISPDIR%%/auctex/style/dk-bib.elc
%%LISPDIR%%/auctex/style/dk.el
%%LISPDIR%%/auctex/style/dk.elc
%%LISPDIR%%/auctex/style/doc.el
%%LISPDIR%%/auctex/style/doc.elc
%%LISPDIR%%/auctex/style/dutch.el
%%LISPDIR%%/auctex/style/dutch.elc
%%LISPDIR%%/auctex/style/emp.el
%%LISPDIR%%/auctex/style/emp.elc
%%LISPDIR%%/auctex/style/english.el
%%LISPDIR%%/auctex/style/english.elc
%%LISPDIR%%/auctex/style/epigraph.el
%%LISPDIR%%/auctex/style/epigraph.elc
%%LISPDIR%%/auctex/style/epsf.el
%%LISPDIR%%/auctex/style/epsf.elc
%%LISPDIR%%/auctex/style/everysel.el
%%LISPDIR%%/auctex/style/everysel.elc
%%LISPDIR%%/auctex/style/exercise.el
%%LISPDIR%%/auctex/style/exercise.elc
%%LISPDIR%%/auctex/style/fancyhdr.el
%%LISPDIR%%/auctex/style/fancyhdr.elc
%%LISPDIR%%/auctex/style/fancynum.el
%%LISPDIR%%/auctex/style/fancynum.elc
%%LISPDIR%%/auctex/style/fancyref.el
%%LISPDIR%%/auctex/style/fancyref.elc
%%LISPDIR%%/auctex/style/fancyvrb.el
%%LISPDIR%%/auctex/style/fancyvrb.elc
%%LISPDIR%%/auctex/style/filecontents.el
%%LISPDIR%%/auctex/style/filecontents.elc
%%LISPDIR%%/auctex/style/flashcards.el
%%LISPDIR%%/auctex/style/flashcards.elc
%%LISPDIR%%/auctex/style/foils.el
%%LISPDIR%%/auctex/style/foils.elc
%%LISPDIR%%/auctex/style/fontspec.el
%%LISPDIR%%/auctex/style/fontspec.elc
%%LISPDIR%%/auctex/style/footmisc.el
%%LISPDIR%%/auctex/style/footmisc.elc
%%LISPDIR%%/auctex/style/francais.el
%%LISPDIR%%/auctex/style/francais.elc
%%LISPDIR%%/auctex/style/french.el
%%LISPDIR%%/auctex/style/french.elc
%%LISPDIR%%/auctex/style/frenchb.el
%%LISPDIR%%/auctex/style/frenchb.elc
%%LISPDIR%%/auctex/style/german.el
%%LISPDIR%%/auctex/style/german.elc
%%LISPDIR%%/auctex/style/graphics.el
%%LISPDIR%%/auctex/style/graphics.elc
%%LISPDIR%%/auctex/style/graphicx.el
%%LISPDIR%%/auctex/style/graphicx.elc
%%LISPDIR%%/auctex/style/harvard.el
%%LISPDIR%%/auctex/style/harvard.elc
%%LISPDIR%%/auctex/style/hyperref.el
%%LISPDIR%%/auctex/style/hyperref.elc
%%LISPDIR%%/auctex/style/icelandic.el
%%LISPDIR%%/auctex/style/icelandic.elc
%%LISPDIR%%/auctex/style/imakeidx.el
%%LISPDIR%%/auctex/style/imakeidx.elc
%%LISPDIR%%/auctex/style/index.el
%%LISPDIR%%/auctex/style/index.elc
%%LISPDIR%%/auctex/style/inputenc.el
%%LISPDIR%%/auctex/style/inputenc.elc
%%LISPDIR%%/auctex/style/italian.el
%%LISPDIR%%/auctex/style/italian.elc
%%LISPDIR%%/auctex/style/j-article.el
%%LISPDIR%%/auctex/style/j-article.elc
%%LISPDIR%%/auctex/style/j-book.el
%%LISPDIR%%/auctex/style/j-book.elc
%%LISPDIR%%/auctex/style/j-report.el
%%LISPDIR%%/auctex/style/j-report.elc
%%LISPDIR%%/auctex/style/jarticle.el
%%LISPDIR%%/auctex/style/jarticle.elc
%%LISPDIR%%/auctex/style/jbook.el
%%LISPDIR%%/auctex/style/jbook.elc
%%LISPDIR%%/auctex/style/jreport.el
%%LISPDIR%%/auctex/style/jreport.elc
%%LISPDIR%%/auctex/style/jsarticle.el
%%LISPDIR%%/auctex/style/jsarticle.elc
%%LISPDIR%%/auctex/style/jsbook.el
%%LISPDIR%%/auctex/style/jsbook.elc
%%LISPDIR%%/auctex/style/jura.el
%%LISPDIR%%/auctex/style/jura.elc
%%LISPDIR%%/auctex/style/jurabib.el
%%LISPDIR%%/auctex/style/jurabib.elc
%%LISPDIR%%/auctex/style/kantlipsum.el
%%LISPDIR%%/auctex/style/kantlipsum.elc
%%LISPDIR%%/auctex/style/kpfonts.el
%%LISPDIR%%/auctex/style/kpfonts.elc
%%LISPDIR%%/auctex/style/latexinfo.el
%%LISPDIR%%/auctex/style/latexinfo.elc
%%LISPDIR%%/auctex/style/letter.el
%%LISPDIR%%/auctex/style/letter.elc
%%LISPDIR%%/auctex/style/lettrine.el
%%LISPDIR%%/auctex/style/lettrine.elc
%%LISPDIR%%/auctex/style/lipsum.el
%%LISPDIR%%/auctex/style/lipsum.elc
%%LISPDIR%%/auctex/style/listings.el
%%LISPDIR%%/auctex/style/listings.elc
%%LISPDIR%%/auctex/style/longtable.el
%%LISPDIR%%/auctex/style/longtable.elc
%%LISPDIR%%/auctex/style/lscape.el
%%LISPDIR%%/auctex/style/lscape.elc
%%LISPDIR%%/auctex/style/ltx-base.el
%%LISPDIR%%/auctex/style/ltx-base.elc
%%LISPDIR%%/auctex/style/ltxdoc.el
%%LISPDIR%%/auctex/style/ltxdoc.elc
%%LISPDIR%%/auctex/style/luacode.el
%%LISPDIR%%/auctex/style/luacode.elc
%%LISPDIR%%/auctex/style/makeidx.el
%%LISPDIR%%/auctex/style/makeidx.elc
%%LISPDIR%%/auctex/style/mathtools.el
%%LISPDIR%%/auctex/style/mathtools.elc
%%LISPDIR%%/auctex/style/mdwlist.el
%%LISPDIR%%/auctex/style/mdwlist.elc
%%LISPDIR%%/auctex/style/memoir.el
%%LISPDIR%%/auctex/style/memoir.elc
%%LISPDIR%%/auctex/style/metalogo.el
%%LISPDIR%%/auctex/style/metalogo.elc
%%LISPDIR%%/auctex/style/mflogo.el
%%LISPDIR%%/auctex/style/mflogo.elc
%%LISPDIR%%/auctex/style/multicol.el
%%LISPDIR%%/auctex/style/multicol.elc
%%LISPDIR%%/auctex/style/multido.el
%%LISPDIR%%/auctex/style/multido.elc
%%LISPDIR%%/auctex/style/multind.el
%%LISPDIR%%/auctex/style/multind.elc
%%LISPDIR%%/auctex/style/multirow.el
%%LISPDIR%%/auctex/style/multirow.elc
%%LISPDIR%%/auctex/style/nameref.el
%%LISPDIR%%/auctex/style/nameref.elc
%%LISPDIR%%/auctex/style/natbib.el
%%LISPDIR%%/auctex/style/natbib.elc
%%LISPDIR%%/auctex/style/naustrian.el
%%LISPDIR%%/auctex/style/naustrian.elc
%%LISPDIR%%/auctex/style/ngerman.el
%%LISPDIR%%/auctex/style/ngerman.elc
%%LISPDIR%%/auctex/style/nicefrac.el
%%LISPDIR%%/auctex/style/nicefrac.elc
%%LISPDIR%%/auctex/style/nomencl.el
%%LISPDIR%%/auctex/style/nomencl.elc
%%LISPDIR%%/auctex/style/paralist.el
%%LISPDIR%%/auctex/style/paralist.elc
%%LISPDIR%%/auctex/style/pdfsync.el
%%LISPDIR%%/auctex/style/pdfsync.elc
%%LISPDIR%%/auctex/style/placeins.el
%%LISPDIR%%/auctex/style/placeins.elc
%%LISPDIR%%/auctex/style/plext.el
%%LISPDIR%%/auctex/style/plext.elc
%%LISPDIR%%/auctex/style/plfonts.el
%%LISPDIR%%/auctex/style/plfonts.elc
%%LISPDIR%%/auctex/style/plhb.el
%%LISPDIR%%/auctex/style/plhb.elc
%%LISPDIR%%/auctex/style/polish.el
%%LISPDIR%%/auctex/style/polish.elc
%%LISPDIR%%/auctex/style/polski.el
%%LISPDIR%%/auctex/style/polski.elc
%%LISPDIR%%/auctex/style/prosper.el
%%LISPDIR%%/auctex/style/prosper.elc
%%LISPDIR%%/auctex/style/psfig.el
%%LISPDIR%%/auctex/style/psfig.elc
%%LISPDIR%%/auctex/style/pst-grad.el
%%LISPDIR%%/auctex/style/pst-grad.elc
%%LISPDIR%%/auctex/style/pst-node.el
%%LISPDIR%%/auctex/style/pst-node.elc
%%LISPDIR%%/auctex/style/pst-plot.el
%%LISPDIR%%/auctex/style/pst-plot.elc
%%LISPDIR%%/auctex/style/pst-slpe.el
%%LISPDIR%%/auctex/style/pst-slpe.elc
%%LISPDIR%%/auctex/style/pstricks.el
%%LISPDIR%%/auctex/style/pstricks.elc
%%LISPDIR%%/auctex/style/ragged2e.el
%%LISPDIR%%/auctex/style/ragged2e.elc
%%LISPDIR%%/auctex/style/report.el
%%LISPDIR%%/auctex/style/report.elc
%%LISPDIR%%/auctex/style/ruby.el
%%LISPDIR%%/auctex/style/ruby.elc
%%LISPDIR%%/auctex/style/scrartcl.el
%%LISPDIR%%/auctex/style/scrartcl.elc
%%LISPDIR%%/auctex/style/scrbase.el
%%LISPDIR%%/auctex/style/scrbase.elc
%%LISPDIR%%/auctex/style/scrbook.el
%%LISPDIR%%/auctex/style/scrbook.elc
%%LISPDIR%%/auctex/style/scrlttr2.el
%%LISPDIR%%/auctex/style/scrlttr2.elc
%%LISPDIR%%/auctex/style/scrpage2.el
%%LISPDIR%%/auctex/style/scrpage2.elc
%%LISPDIR%%/auctex/style/scrreprt.el
%%LISPDIR%%/auctex/style/scrreprt.elc
%%LISPDIR%%/auctex/style/setspace.el
%%LISPDIR%%/auctex/style/setspace.elc
%%LISPDIR%%/auctex/style/shortvrb.el
%%LISPDIR%%/auctex/style/shortvrb.elc
%%LISPDIR%%/auctex/style/siunitx.el
%%LISPDIR%%/auctex/style/siunitx.elc
%%LISPDIR%%/auctex/style/slides.el
%%LISPDIR%%/auctex/style/slides.elc
%%LISPDIR%%/auctex/style/slovak.el
%%LISPDIR%%/auctex/style/slovak.elc
%%LISPDIR%%/auctex/style/subfigure.el
%%LISPDIR%%/auctex/style/subfigure.elc
%%LISPDIR%%/auctex/style/swedish.el
%%LISPDIR%%/auctex/style/swedish.elc
%%LISPDIR%%/auctex/style/tabularx.el
%%LISPDIR%%/auctex/style/tabularx.elc
%%LISPDIR%%/auctex/style/tabulary.el
%%LISPDIR%%/auctex/style/tabulary.elc
%%LISPDIR%%/auctex/style/ulem.el
%%LISPDIR%%/auctex/style/ulem.elc
%%LISPDIR%%/auctex/style/unicode-math.el
%%LISPDIR%%/auctex/style/unicode-math.elc
%%LISPDIR%%/auctex/style/units.el
%%LISPDIR%%/auctex/style/units.elc
%%LISPDIR%%/auctex/style/url.el
%%LISPDIR%%/auctex/style/url.elc
%%LISPDIR%%/auctex/style/varioref.el
%%LISPDIR%%/auctex/style/varioref.elc
%%LISPDIR%%/auctex/style/verbatim.el
%%LISPDIR%%/auctex/style/verbatim.elc
%%LISPDIR%%/auctex/style/virtex.el
%%LISPDIR%%/auctex/style/virtex.elc
%%LISPDIR%%/auctex/style/xparse.el
%%LISPDIR%%/auctex/style/xparse.elc
%%LISPDIR%%/auctex/style/xspace.el
%%LISPDIR%%/auctex/style/xspace.elc
%%LISPDIR%%/auctex/tex-bar.el
%%LISPDIR%%/auctex/tex-bar.elc
%%LISPDIR%%/auctex/tex-buf.el
%%LISPDIR%%/auctex/tex-buf.elc
%%LISPDIR%%/auctex/tex-fold.el
%%LISPDIR%%/auctex/tex-fold.elc
%%LISPDIR%%/auctex/tex-font.el
%%LISPDIR%%/auctex/tex-font.elc
%%LISPDIR%%/auctex/tex-info.el
%%LISPDIR%%/auctex/tex-info.elc
%%LISPDIR%%/auctex/tex-jp.el
%%LISPDIR%%/auctex/tex-jp.elc
%%LISPDIR%%/auctex/tex-mik.el
%%LISPDIR%%/auctex/tex-mik.elc
%%LISPDIR%%/auctex/tex-style.el
%%LISPDIR%%/auctex/tex-style.elc
%%LISPDIR%%/auctex/tex.el
%%LISPDIR%%/auctex/tex.elc
%%LISPDIR%%/auctex/texmathp.el
%%LISPDIR%%/auctex/texmathp.elc
%%LISPDIR%%/auctex/toolbar-x.el
%%LISPDIR%%/auctex/toolbar-x.elc
%%LISPDIR%%/preview-latex.el
%%LISPDIR%%/tex-site.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/.nosearch
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/auto/.nosearch
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/bib-cite.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/bib-cite.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-en.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-en.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-nl.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context-nl.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/context.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/font-latex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/font-latex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/amstex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/bibtex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/dropdown.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/dvipdf.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/dvips.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/error.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/exec.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execbibtex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execdvips.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execerror.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execpdftex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/exectex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execviewdvi.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execviewpdf.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/execviewps.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/gv.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/jumpdvi.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/ltx-symb-turn-off.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/ltx-symb-turn-on.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/pdftex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr16.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr20.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr24.xbm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prverr24.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex-cap-up.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex12.xbm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex12.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex16.xbm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex16.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex20.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex24.xbm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvtex24.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk12.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk14.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk16.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk20.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk24.xbm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/prvwrk24.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/pspdf.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/sep.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/spell.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/tex.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/view.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/viewdvi.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/viewpdf.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/images/viewps.xpm
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/latex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/latex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/multi-prompt.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/multi-prompt.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/plain-tex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/plain-tex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/preview.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/preview.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/prv-emacs.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/prv-emacs.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/.nosearch
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJK.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJK.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJKutf8.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/CJKutf8.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/MinionPro.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/MinionPro.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acro.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acro.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acronym.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/acronym.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/afterpage.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/afterpage.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alltt.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alltt.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alphanum.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/alphanum.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsart.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsart.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbook.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbook.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbsy.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsbsy.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsmath.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsmath.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsopn.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsopn.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amssymb.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amssymb.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstext.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amstext.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsthm.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/amsthm.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/array.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/array.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/article.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/article.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/austrian.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/austrian.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/babel.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/babel.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamer.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/beamer.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/biblatex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/biblatex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigdelim.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigdelim.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigstrut.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bigstrut.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bm.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bm.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/book.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/book.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/booktabs.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/booktabs.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bulgarian.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/bulgarian.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/captcont.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/captcont.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cleveref.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/cleveref.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/comment.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/comment.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/csquotes.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/csquotes.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/czech.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/czech.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/danish.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/danish.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dinbrief.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dinbrief.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk-bib.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk-bib.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dk.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/doc.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/doc.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dutch.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/dutch.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/emp.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/emp.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/english.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/english.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epigraph.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epigraph.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epsf.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/epsf.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/everysel.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/everysel.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/exercise.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/exercise.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyhdr.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyhdr.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancynum.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancynum.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyref.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyref.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyvrb.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fancyvrb.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/filecontents.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/filecontents.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/flashcards.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/flashcards.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/foils.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/foils.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontspec.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/fontspec.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/footmisc.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/footmisc.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/francais.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/francais.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/french.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/french.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/frenchb.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/frenchb.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/german.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/german.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphics.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphics.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphicx.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/graphicx.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/harvard.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/harvard.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/hyperref.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/hyperref.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/icelandic.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/icelandic.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/imakeidx.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/imakeidx.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/index.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/index.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/inputenc.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/inputenc.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/italian.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/italian.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-article.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-article.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-book.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-book.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-report.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/j-report.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jarticle.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jarticle.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jbook.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jbook.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jreport.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jreport.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsarticle.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsarticle.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsbook.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jsbook.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jura.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jura.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jurabib.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/jurabib.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kantlipsum.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kantlipsum.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kpfonts.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/kpfonts.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/latexinfo.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/latexinfo.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/letter.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/letter.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lettrine.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lettrine.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lipsum.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lipsum.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/listings.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/listings.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/longtable.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/longtable.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lscape.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/lscape.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltx-base.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltx-base.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxdoc.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ltxdoc.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/luacode.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/luacode.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/makeidx.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/makeidx.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mathtools.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mathtools.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdwlist.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mdwlist.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/memoir.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/memoir.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/metalogo.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/metalogo.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mflogo.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/mflogo.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multicol.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multicol.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multido.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multido.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multind.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multind.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multirow.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/multirow.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nameref.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nameref.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/natbib.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/natbib.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/naustrian.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/naustrian.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ngerman.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ngerman.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nicefrac.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nicefrac.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nomencl.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/nomencl.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/paralist.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/paralist.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdfsync.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pdfsync.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/placeins.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/placeins.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plext.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plext.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plfonts.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plfonts.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plhb.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/plhb.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polish.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polish.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polski.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/polski.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/prosper.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/prosper.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/psfig.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/psfig.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-grad.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-grad.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-node.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-node.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-plot.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-plot.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-slpe.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pst-slpe.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pstricks.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/pstricks.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ragged2e.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ragged2e.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/report.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/report.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ruby.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ruby.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrartcl.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrartcl.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbase.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbase.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbook.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrbook.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrlttr2.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrlttr2.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrpage2.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrpage2.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrreprt.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/scrreprt.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/setspace.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/setspace.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/shortvrb.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/shortvrb.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/siunitx.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/siunitx.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slides.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slides.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slovak.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/slovak.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subfigure.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/subfigure.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/swedish.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/swedish.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabularx.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabularx.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabulary.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/tabulary.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ulem.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/ulem.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/unicode-math.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/unicode-math.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/units.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/units.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/url.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/url.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/varioref.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/varioref.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/verbatim.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/verbatim.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/virtex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/virtex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xparse.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xparse.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xspace.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/style/xspace.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-bar.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-bar.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-buf.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-buf.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-fold.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-fold.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-font.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-font.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-info.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-info.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-jp.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-jp.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-mik.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-mik.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-style.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex-style.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/tex.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/texmathp.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/texmathp.elc
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/toolbar-x.el
%%EMACS_VERSION_SITE_LISPDIR%%/auctex/toolbar-x.elc
%%EMACS_VERSION_SITE_LISPDIR%%/preview-latex.el
%%EMACS_VERSION_SITE_LISPDIR%%/tex-site.el
%%TEXMFDIR%%/tex/latex/preview/prauctex.cfg
%%TEXMFDIR%%/tex/latex/preview/prauctex.def
%%TEXMFDIR%%/tex/latex/preview/prcounters.def

View file

@ -2,7 +2,7 @@
PORTNAME= cups-filters
PORTVERSION= 1.0.71
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= print
MASTER_SITES= http://www.openprinting.org/download/cups-filters/

View file

@ -2,6 +2,7 @@
PORTNAME= fxlinuxprint
PORTVERSION= 1.0.1
PORTREVISION= 1
CATEGORIES= print
MASTER_SITES= ftp://download.fujixerox.co.jp/pub/exe/apeosport/c4300series/
PKGNAMEPREFIX= cups-

View file

@ -3,7 +3,7 @@
PORTNAME= cups-pdf
PORTVERSION= 2.6.1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= print
MASTER_SITES= http://www.cups-pdf.de/src/ \
http://www.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/src/

View file

@ -3,7 +3,7 @@
PORTNAME= dvisvg
DISTVERSION= 0.7.1d
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= print
MASTER_SITES= http://dvisvg.sourceforge.net/files/

View file

@ -3,7 +3,7 @@
PORTNAME= epsonepl
PORTVERSION= 0.2.2
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= print
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/GS-IJS%20Plugin%20v${PORTVERSION}
DISTNAME= ${PORTNAME}ijs-${PORTVERSION}

View file

@ -3,7 +3,7 @@
PORTNAME= flpsed
PORTVERSION= 0.7.2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= print
MASTER_SITES= http://www.ecademix.com/JohannesHofmann/
@ -15,7 +15,7 @@ LICENSE= GPLv3
LIB_DEPENDS+= libfltk.so:${PORTSDIR}/x11-toolkits/fltk
GNU_CONFIGURE= yes
USES= desktop-file-utils ghostscript gmake
USES= desktop-file-utils ghostscript:x11 gmake
PLIST_FILES= bin/flpsed \
man/man1/flpsed.1.gz \
share/applications/flpsed.desktop \

View file

@ -3,7 +3,7 @@
PORTNAME= font2svg
PORTVERSION= 1.0
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= print
MASTER_SITES= http://www.gdv.uni-hannover.de/~peinecke/font2svg/

View file

@ -3,6 +3,7 @@
PORTNAME= foo2zjs
PORTVERSION= 20150511
PORTREVISION= 1
CATEGORIES= print
MASTER_SITES= GOOGLE_CODE \
LOCAL/bsam/${PORTNAME} \

View file

@ -3,7 +3,7 @@
PORTNAME= foomatic-filters
PORTVERSION= 4.0.17
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= print
MASTER_SITES= http://www.openprinting.org/download/foomatic/

View file

@ -4,7 +4,7 @@
PORTNAME= ggv
PORTVERSION= 2.12.0
PORTREVISION= 9
PORTREVISION= 10
CATEGORIES= print gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
@ -14,7 +14,7 @@ COMMENT= GNOME 2 ghostscript viewer
INSTALLS_OMF= yes
USE_GNOME= gnomeprefix intlhack libgnomeui
USES= desktop-file-utils gettext ghostscript gmake libtool \
USES= desktop-file-utils gettext ghostscript:x11 gmake libtool \
pathfix pkgconfig tar:bzip2
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include

View file

@ -3,12 +3,11 @@
PORTNAME= ghostscript
PORTVERSION= 7.07
PORTREVISION= 31
PORTREVISION= 32
CATEGORIES= print
MASTER_SITES= SF/ghostscript/gnu-gs/${PORTVERSION}:gs_srcs \
ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/gnu/gs${PORTVERSION:S/.//}/:gs_srcs \
PORTS_JP:ports_jp,ports_jp_gs
PKGNAMESUFFIX= 7
PKGNAMESUFFIX= 7-base
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:gs_srcs
DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
@ -23,38 +22,43 @@ RUN_DEPENDS= ${LOCALBASE}/share/ghostscript/fonts/a010013l.pfb:${PORTSDIR}/print
CONFLICTS_INSTALL= \
gambc-[0-9]* \
ghostscript[89]-[0-9]* \
ghostscript[89]-nox11-[0-9]* \
ghostscript[789]-[0-9]* \
ghostscript[789]-nox11-[0-9]* \
ghostscript9-agpl-[0-9]* \
ghostscript9-agpl-nox11-[0-9]*
USES= gmake jpeg shebangfix tar:bzip2
USES= autoreconf gmake jpeg shebangfix tar:bzip2
USE_LDCONFIG= yes
SHEBANG_FILES= lib/fixmswrd.pl
SHEBANG_FILES= lib/fixmswrd.pl
WANT_GNOME= yes
# normazile WRKSRC so things like cups-pstoraster may work
WRKSRC= ${WRKDIR}/${PORTNAME}
MAKE_JOBS_UNSAFE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= ${MAKE_ENV}
CONFIGURE_ARGS= --disable-compile-inits \
--with-ijs
--enable-dynamic \
--with-ijs \
--without-x
MAKE_ENV= CFLAGS_STANDARD="${CFLAGS}" \
XCFLAGS="${XCFLAGS}" XLDFLAGS="${XLDFLAGS}" \
EXTRALIBS="${EXTRALIBS}"
CPPFLAGS+= -fPIC -DUPD_SIGNAL=0 -I. -I${WRKSRC}/gimp-print \
CPPFLAGS+= -fPIC -DUPD_SIGNAL=0 -I. \
-I${WRKSRC}/gimp-print \
-I${LOCALBASE}/include
XCFLAGS+= -DA4
LDFLAGS+= ${XLDFLAGS}
XLDFLAGS= -lpthread -L${LOCALBASE}/lib -L${WRKSRC}/gimp-print
PLIST_SUB= GS_VERSION="${PORTVERSION}"
XLDFLAGS= -lpthread \
-L${LOCALBASE}/lib \
-L${WRKSRC}/gimp-print
ALL_TARGET= so
INSTALL_TARGET= soinstall
PLIST_SUB= SHLIB_VER="${PORTVERSION:R}" \
GS_VERSION="${PORTVERSION}"
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= X11 DOCS A4SIZE
OPTIONS_DEFAULT=X11 DOCS A4SIZE
OPTIONS_DEFINE= DOCS
OPTIONS_DEFAULT=DOCS
NO_OPTIONS_SORT=yes
X11_USE= GNOME=gtk12
X11_MAKE_ENV= GS_SHLIB_VER="${SHLIB_VER}"
A4SIZE_DESC= Set A4 (not Letter) as the default paper size
post-extract-all:
${LN} -sf ${WRKDIR}/${DISTNAME} ${WRKDIR}/${PORTNAME}
@ -63,12 +67,9 @@ post-extract: post-extract-all
.include "Makefile.drivers"
.include <bsd.port.options.mk>
MASTERDIR?= ${.CURDIR}
.include "${MASTERDIR}/files/Makefile.drivers_post"
.include "files/Makefile.drivers_post"
.for D in ${OPTIONS_DEFINE:MGS_*:S/^GS_//} \
${OPTIONS_MULTI_X11:MGS_*:S/^GS_//} \
${OPTIONS_GROUP_SVGALIB:MGS_*:S/^GS_//}
.if ${PORT_OPTIONS:MGS_${D}}
PLIST_SUB+= GS_${D}=""
@ -77,31 +78,16 @@ PLIST_SUB+= GS_${D}="@comment "
.endif
.endfor
.if ${PORT_OPTIONS:MA4SIZE}
XCFLAGS+= -DA4
.if ${PORT_OPTIONS:MGS_pcl3}
ALL_TARGET+= pcl3opts
.endif
# contributed uniprint profiles
CONTRIB_UPP= lqx70ch.upp lqx70cl.upp lqx70cm.upp \
stc740ih.upp stc740p.upp stc740pl.upp
.if ${PORT_OPTIONS:MX11}
SHLIB_VER= 1
PLIST_SUB+= SHLIB="" X11="" SHLIB_VER="${SHLIB_VER}"
ALL_TARGET= so
INSTALL_TARGET= soinstall
.if ${PORT_OPTIONS:MGS_pcl3}
ALL_TARGET+= pcl3opts
.endif
.else
ALL_TARGET= all
PLIST_SUB+= SHLIB="@comment " X11="@comment "
.endif
post-patch:
${REINPLACE_CMD} -e 's|^DEVICE_DEVS|#DEVICE_DEVS|g' \
${WRKSRC}/src/unix-gcc.mak
${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|g' \
${REINPLACE_CMD} -e 's,%%DATADIR%%,${DATADIR},' \
${WRKSRC}/lib/gs_res.ps
pre-build-drivers.mak:
@ -131,20 +117,14 @@ pre-build-all:
pre-build: pre-build-all pre-build-drivers.mak pre-build-contrib_extra.mak
pre-su-install:
pre-install:
${MKDIR} ${STAGEDIR}${DATADIR}
post-install-docs:
${MKDIR} ${STAGEDIR}${DOCSDIR}
post-install:
.if ${PORT_OPTIONS:MX11}
${LN} -sf gsc ${STAGEDIR}${PREFIX}/bin/gs
.endif
cd ${FILESDIR} \
&& ${INSTALL_DATA} ${CONTRIB_UPP} \
${STAGEDIR}${DATADIR}/${PORTVERSION}/lib
cd ${FILESDIR} && ${INSTALL_DATA} ${CONTRIB_UPP} \
${STAGEDIR}${DATADIR}/${PORTVERSION}/lib
post-install: post-install-docs
post-install-DOCS-on: post-install-docs
.include <bsd.port.mk>

View file

@ -1,20 +1,5 @@
# $FreeBSD$
OPTIONS_X11= \
GS_x11 \
GS_x11alpha \
GS_x11cmyk \
GS_x11cmyk2 \
GS_x11cmyk4 \
GS_x11cmyk8 \
GS_x11gray2 \
GS_x11gray4 \
GS_x11mono \
GS_x11rg16x \
GS_x11rg32x
OPTIONS_MULTI= X11
OPTIONS_MULTI_X11= ${OPTIONS_X11}
OPTIONS_SVGALIB= \
GS_lvga256 \
GS_vgalib
@ -269,7 +254,6 @@ OPTIONS_DEFINE+= \
GS_bbox
OPTIONS_DEFAULT+= \
${OPTIONS_X11} \
${OPTIONS_SVGALIB} \
GS_md2k \
GS_md5k \

View file

@ -34,31 +34,6 @@ OPTIONS_UNSET+= ${PORT_OPTIONS:MGS_${D}}
LIB_DEPENDS+= libvga.so:${PORTSDIR}/graphics/svgalib
.endif
# x11 specific
X11_DEVS= x11 x11alpha x11cmyk x11cmyk2 x11cmyk4 x11cmyk8 x11gray2 \
x11gray4 x11mono x11rg16x x11rg32x
.undef _X11_DEVS
.for D in ${X11_DEVS}
.if ${PORT_OPTIONS:MX11} && ${PORT_OPTIONS:MGS_${D}}
_X11_DEVS+= ${D}
.else
PORT_OPTIONS:= ${PORT_OPTIONS:NGS_${D}}
.endif
.endfor
.if defined(_X11_DEVS)
USE_XORG= xt xext
CONFIGURE_ARGS+=--with-x \
--x-includes=${LOCALBASE}/include \
--x-libraries=${LOCALBASE}/lib
CONFLICTS_INSTALL+= ghostscript7-nox11-[0-9]*
.else # defined(_X11_DEVS)
PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nox11
CONFIGURE_ARGS+=--without-x
CONFLICTS_INSTALL+= ghostscript7-[0-9]*
.endif # defined(_X11_DEVS)
.if ${PORT_OPTIONS:MGS_cdj670} || \
${PORT_OPTIONS:MGS_cdj850} || \
${PORT_OPTIONS:MGS_cdj880} || \

View file

@ -13,9 +13,7 @@ post-extract-pcl3:
${TAR} -C ${WRKSRC}/pcl3 -xf ${WRKSRC}/pcl3/pcl3.tar
post-install-pcl3:
.if ${PORT_OPTIONS:MX11}
${INSTALL_PROGRAM} ${WRKSRC}/bin/pcl3opts ${STAGEDIR}${PREFIX}/bin
.endif
cd ${WRKSRC}/pcl3/doc && \
${INSTALL_MAN} gs-pcl3.1 pcl3opts.1 \
${STAGEDIR}${MANPREFIX}/man/man1

Some files were not shown because too many files have changed in this diff Show more