freebsd-ports/print/a2ps/Makefile

85 lines
2.2 KiB
Makefile
Raw Normal View History

# Created by: Chuck Robey <chuckr@FreeBSD.org>
1999-08-31 03:53:22 +02:00
# $FreeBSD$
1995-04-15 06:34:11 +02:00
PORTNAME= a2ps
2003-06-20 19:30:24 +02:00
PORTVERSION= 4.13b
PORTREVISION= 11
CATEGORIES= print
MASTER_SITES= GNU LOCAL/hrs/a2ps/:i18n
1995-04-15 06:34:11 +02:00
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Formats an ASCII file for printing on a postscript printer
2010-06-04 15:49:15 +02:00
LICENSE= GPLv2
LIB_DEPENDS= libpaper.so:print/libpaper
PORTSCOUT= skipv:4.14
USES= perl5 cpe
2011-05-12 14:16:10 +02:00
USE_CSTD= gnu89
GNU_CONFIGURE= yes
2008-03-23 10:02:34 +01:00
USE_LDCONFIG= yes
2004-06-11 04:57:14 +02:00
INFO= a2ps ogonkify regex
2003-06-20 19:30:24 +02:00
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
Support LIBS like LDFLAGS. - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine)
2014-06-11 16:49:59 +02:00
LIBS+= -L${LOCALBASE}/lib
PAPERSIZE?=
.if ${PAPERSIZE:tl} == a4
RUN_DEPENDS+= ${LOCALBASE}/etc/papersize:print/papersize-default-a4
2004-02-25 11:53:08 +01:00
.endif
OPTIONS_DEFINE=NLS I18N EMACS
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_USES= emacs:build
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
2014-03-30 07:30:59 +02:00
@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:
cd ${WRKSRC}/doc && \
${SETENV} ${MAKE_ENV} ${MAKE} ${.MAKEFLAGS} ${MAKE_ARGS} ${INSTALL_TARGET}
${RM} ${STAGEDIR}${PREFIX}/lib/liba2ps.la
.include <bsd.port.mk>