aboutsummaryrefslogtreecommitdiff
path: root/print/acroread7
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2006-02-11 21:03:14 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2006-02-11 21:03:14 +0000
commitd16f7bfb920bf7147ea96d7951ac9bbc5f8c72c6 (patch)
treec4e3594d87f8e8738d7a29889fee7a88de679c57 /print/acroread7
parent35d7addf04a023375ba52387fa1040ca86608ddb (diff)
downloadports-d16f7bfb920bf7147ea96d7951ac9bbc5f8c72c6.tar.gz
ports-d16f7bfb920bf7147ea96d7951ac9bbc5f8c72c6.zip
Reset maintainership to ports@ after ~4 months without any response to any
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
Notes
Notes: svn path=/head/; revision=155784
Diffstat (limited to 'print/acroread7')
-rw-r--r--print/acroread7/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/print/acroread7/Makefile b/print/acroread7/Makefile
index f7566dc1b20d..7dc57c9ac1d3 100644
--- a/print/acroread7/Makefile
+++ b/print/acroread7/Makefile
@@ -16,7 +16,7 @@ EXTRACT_SUFX=
DIST_SUBDIR= acroread
EXTRACT_ONLY=
-MAINTAINER?= trevor@FreeBSD.org
+MAINTAINER?= ports@FreeBSD.org
COMMENT?= View, search and print PDF documents
BUILD_DEPENDS= rpm:${PORTSDIR}/archivers/rpm
@@ -32,6 +32,13 @@ PLIST= ${WRKDIR}/plist
SUB_FILES= acroread7
SUB_LIST+= INSTDIR=${INSTDIR}
+.include <bsd.port.pre.mk>
+
+.if (${ARCH} == "amd64")
+ARCH= i386
+RPMFLAGS+= --ignorearch
+.endif
+
do-build:
@kldstat -v | ${GREP} -E 'linux(aout|elf)' >/dev/null ||\
{ ${ECHO_MSG} "Linux ABI compatibility must be enabled to install ${PORTNAME}-${PORTVERSION}"; \
@@ -56,4 +63,4 @@ do-install:
# disable the PPKLite plugin as it requires an LDAP share lib
${CHMOD} 0 ${PREFIX}/${INSTDIR}/usr/local/Adobe/Acrobat7.0/Reader/intellinux/plug_ins/PPKLite.api
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>