mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
2b8b774e75
* Add local workaround for supporting only linux_base and linux_base-8. PR: ports/60752 Reviewed by: Submitter
67 lines
1.8 KiB
Makefile
67 lines
1.8 KiB
Makefile
# New ports collection makefile for: acroread
|
|
# Date created: 16 November 1996
|
|
# Whom: Thomas Gellekum <tg@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= acroread
|
|
PORTVERSION= 5.09
|
|
CATEGORIES= print linux
|
|
MASTER_SITES= http://download.adobe.com/pub/adobe/acrobatreader/unix/5.x/ \
|
|
ftp://ftp.adobe.com/pub/adobe/acrobatreader/unix/5.x/
|
|
.include <bsd.port.pre.mk>
|
|
.if ${ARCH} == "i386"
|
|
DISTNAME= linux-509
|
|
.endif
|
|
CONFLICTS= acroread-3*
|
|
DIST_SUBDIR= acroread
|
|
|
|
MAINTAINER= trevor@FreeBSD.org
|
|
COMMENT= View, distribute and print PDF documents
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
.if (exists(${LINUXBASE}/lib/libc-2.3.2.so))
|
|
RUN_DEPENDS+= ${LINUXBASE}/usr/X11R6/lib/libX11.so.6:${PORTSDIR}/x11/linux-XFree86-libs
|
|
.else
|
|
USE_LINUX= yes
|
|
.endif
|
|
|
|
USE_REINPLACE= yes
|
|
REINPLACE_ARGS= -i '' -E
|
|
NO_FILTER_SHLIBS= yes
|
|
|
|
.if ${ARCH} == "i386"
|
|
PLIST_SUB= "ARCHDIR=intellinux"
|
|
.endif
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
do-build:
|
|
@${ECHO_MSG} "Do a \`make install' as root."
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/Acrobat5
|
|
@ReadInstallDir=${PREFIX}/Acrobat5 ${WRKDIR}/INSTALL
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
strings -1 ${WRKDIR}/README > ${DOCSDIR}/README
|
|
.endif
|
|
|
|
post-install:
|
|
${REINPLACE_CMD} 's:Linux):FreeBSD|Linux):g' ${PREFIX}/Acrobat5/bin/acroread
|
|
-@${LINUXBASE}/usr/bin/strip ${PREFIX}/Acrobat5/Reader/intellinux/bin/acroread
|
|
@brandelf -t Linux ${PREFIX}/Acrobat5/Reader/intellinux/bin/acroread
|
|
${REINPLACE_CMD} 's:OSF1):FreeBSD|OSF1):g' ${PREFIX}/Acrobat5/bin/acroread
|
|
@cd ${PREFIX}/Acrobat5/bin && \
|
|
${INSTALL_SCRIPT} ${PREFIX}/Acrobat5/bin/acroread \
|
|
${PREFIX}/bin/acroread5
|
|
@${CHOWN} -R -h root:wheel ${PREFIX}/Acrobat5
|
|
@${CHMOD} +x ${PREFIX}/bin/acroread5
|
|
[ -e ${PREFIX}/bin/acroread ] \
|
|
|| (cd ${PREFIX}/bin ; ${LN} -sf acroread5 acroread)
|
|
@${ECHO_MSG} "Be sure to read the license agreement in"
|
|
@${ECHO_MSG} "${PREFIX}/Acrobat5/Reader/license.txt"
|
|
|
|
.include <bsd.port.post.mk>
|