blob: 1c77355877d46cb84f76e3c0706f92426e3ad8a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Created by: amistry@am-productions.biz
# $FreeBSD$
PORTNAME= hplip-plugin
PORTVERSION= 3.13.6
CATEGORIES= print
MASTER_SITES= http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/
DISTNAME= hplip-${DISTVERSION}-plugin
EXTRACT_SUFX= .run
MAINTAINER= amistry@am-productions.biz
COMMENT= Binary plugin for some HP Printers and All-in-One devices
RUN_DEPENDS= hp-plugin:${PORTSDIR}/print/hplip
USE_PYTHON= yes
NO_BUILD= yes
RESTRICTED= User must accept the license terms
NO_PACKAGE= ${RESTRICTED}
IS_INTERACTIVE= yes
WRKSRC= ${WRKDIR}/plugin_tmp
ONLY_FOR_ARCHS= amd64 i386
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
PLIST_SUB+= LINARCH="x86_32"
.elif ${ARCH} == "amd64"
PLIST_SUB+= LINARCH="x86_64"
.endif
do-extract:
@${MKDIR} ${WRKDIR}
@cd ${WRKDIR} && ${SH} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} --keep --noexec
post-patch:
# ${REINPLACE_CMD} -e 's|ok, ans = tui.enter_yes_no.*|ok, ans = 1, 1|' \
# ${WRKSRC}/plugin_install.py
${REINPLACE_CMD} -e 's|rules,||;s|rules_alt,||' ${WRKSRC}/plugin.spec
${REINPLACE_CMD} -e 's|/etc/hp|${PREFIX}&|g' \
${WRKSRC}/plugin_install.py
do-install:
cd ${WRKSRC} && ${PYTHON_CMD} -B plugin_install.py
.include <bsd.port.post.mk>
|