60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
93 lines
2.5 KiB
Makefile
93 lines
2.5 KiB
Makefile
# Created by: Chuck Robey <chuckr@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= a2ps
|
|
PORTVERSION= 4.13b
|
|
PORTREVISION= 6
|
|
CATEGORIES= print
|
|
MASTER_SITES= GNU LOCAL/hrs/a2ps/:i18n
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Formats an ASCII file for printing on a postscript printer
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpaper.so:${PORTSDIR}/print/libpaper
|
|
|
|
PORTSCOUT= skipv:4.14
|
|
|
|
USES= perl5 cpe
|
|
USE_CSTD= gnu89
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
INFO= a2ps ogonkify regex
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-4.13
|
|
I18N_PACKAGE= i18n-fonts-0.1
|
|
CPE_VENDOR= gnu
|
|
|
|
CONFIGURE_ARGS= --with-medium=libpaper --sharedstatedir=${PREFIX}/share \
|
|
--sysconfdir=${PREFIX}/etc --datadir=${PREFIX}/share \
|
|
--localstatedir=${PREFIX}/share
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
PAPERSIZE?=
|
|
.if ${PAPERSIZE:tl} == a4
|
|
RUN_DEPENDS+= ${LOCALBASE}/etc/papersize:${PORTSDIR}/print/papersize-default-a4
|
|
.endif
|
|
|
|
OPTIONS_DEFINE=NLS I18N EMACS
|
|
OPTIONS_DEFAULT=NLS
|
|
NO_OPTIONS_SORT=yes
|
|
OPTIONS_SUB= yes
|
|
EMACS_DESC=Enable Emacs support
|
|
I18N_DESC=Enable I18N support
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
EMACS_USE= EMACS=yes
|
|
EMACS_CONFIGURE_ON= --with-lispdir=${LOCALBASE}/${EMACS_SITE_LISPDIR}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ! ${PORT_OPTIONS:MEMACS}
|
|
CONFIGURE_ENV+= EMACS=no
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|^DESTDIR|#DESTDIR|' \
|
|
`${FIND} ${WRKSRC} -name "Makefile.in"`
|
|
|
|
.if ${PORT_OPTIONS:MI18N}
|
|
#DISTFILES+= ${I18N_PACKAGE}${EXTRACT_SUFX}:i18n
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${I18N_PACKAGE}${EXTRACT_SUFX}:i18n
|
|
|
|
pre-configure:
|
|
cd ${WRKDIR}/${I18N_PACKAGE}/afm && \
|
|
${ECHO_CMD} *.afm > afms.lst && \
|
|
${MV} *.afm ${WRKSRC}/afm
|
|
cd ${WRKDIR}/${I18N_PACKAGE}/fonts && \
|
|
${MV} *.pfb ${WRKSRC}/fonts
|
|
|
|
post-configure:
|
|
@cd ${WRKSRC}/fonts && { ${ECHO_CMD} ''; \
|
|
${ECHO_CMD} "pfb_fonts =" *.pfb; } >> Makefile && \
|
|
${REINPLACE_CMD} 's,^\(fonts_DATA = .*\),\1 $$(pfb_fonts),' Makefile
|
|
@cd ${WRKSRC}/afm && { ${ECHO_CMD} ''; \
|
|
${ECHO_CMD} "i18n_afms =" `cat ${WRKDIR}/${I18N_PACKAGE}/afm/afms.lst`; } >> Makefile && \
|
|
${REINPLACE_CMD} 's,^\(all_afms = .*\),\1 $$(i18n_afms),' Makefile
|
|
.endif
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MEMACS}
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/xemacs/site-lisp
|
|
${LN} -sf ${PREFIX}/share/emacs/site-lisp/a2ps-print.el \
|
|
${STAGEDIR}${PREFIX}/lib/xemacs/site-lisp/a2ps-print.el
|
|
${LN} -sf ${PREFIX}/share/emacs/site-lisp/a2ps.el \
|
|
${STAGEDIR}${PREFIX}/lib/xemacs/site-lisp/a2ps.el
|
|
.endif
|
|
cd ${WRKSRC}/doc && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${.MAKEFLAGS} ${MAKE_ARGS} ${INSTALL_TARGET}
|
|
${RM} -f ${STAGEDIR}${PREFIX}/lib/liba2ps.la
|
|
|
|
.include <bsd.port.mk>
|