blob: 9ce5e7d6a1dc31ea6ed8449908db82f7a0d4270c (
plain) (
blame)
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
49
50
51
52
53
54
55
56
|
# New ports collection makefile for: xforms
# Version required: 0.88.1
# Date created: 28 March 1997
# Whom: gena
#
# $Id: Makefile,v 1.22 1998/12/27 18:43:33 dirk Exp $
#
USE_X_PREFIX= yes
.include <bsd.port.pre.mk>
.if ${PORTOBJFORMAT} == "elf"
DISTNAME= bxform-freebsd-elf
MASTER_SITES= http://bragg.phys.uwm.edu/~zhao/ftp/
PATCHDIR= ${.CURDIR}/patches.elf
.else
DISTNAME= bxform-088
MASTER_SITES= ftp://bragg.phys.uwm.edu/pub/xforms/freeBSD/ \
ftp://ftp.via.ecp.fr/pub2/xforms/freeBSD/ \
ftp://ftp.st.ryukoku.ac.jp/pub/X11/xforms/freeBSD/
.endif
PKGNAME= xforms-0.88.1
CATEGORIES= graphics x11-toolkits
EXTRACT_SUFX= .tgz
MAINTAINER= gena@NetVision.net.il
ONLY_FOR_ARCHS= i386
PATCH_STRIP= -p0 -t
WRKSRC= ${WRKDIR}/xforms
MAN1= fdesign.1 fd2ps.1
MAN5= xforms.5
# XXX: ask the author to include the right soname
.if ${PORTOBJFORMAT} == "elf"
.if !exists(/usr/bin/perl5)
pre-fetch:
@${ECHO} "Need perl5 to patch soname"
@${FALSE}
.endif
.endif
post-install:
# XXX: ask the author to include the right soname
.if ${PORTOBJFORMAT} == "elf"
/usr/bin/perl5 -pe 's/libforms.so.0.88/libxforms.so.0\000\000/' < ${PREFIX}/lib/libxforms.so.0 > ${PREFIX}/lib/libxforms.so.0.tmp
${MV} ${PREFIX}/lib/libxforms.so.0.tmp ${PREFIX}/lib/libxforms.so.0
.endif
${LDCONFIG} -m ${PREFIX}/lib
.if !defined(NOMANCOMPRESS)
@${RM} ${PREFIX}/man/man5/forms.5
@ln -fs xforms.5.gz ${PREFIX}/man/man5/forms.5.gz
.endif
.include <bsd.port.post.mk>
|