blob: a9ca802e1063ac977f7bc031ab31a45b2e576194 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# New ports collection makefile for: smalltalk
# Date created: 09 Feb 1995
# Whom: gpalmer
#
# $FreeBSD$
#
PORTNAME= smalltalk
PORTVERSION= 3.2.2
PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= johans@FreeBSD.org
COMMENT= GNU Smalltalk
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \
gawk:${PORTSDIR}/lang/gawk
LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm \
execinfo.1:${PORTSDIR}/devel/libexecinfo \
cairo.2:${PORTSDIR}/graphics/cairo
OPTIONS= TCLTK "Enable Tcl/Tk binding" on \
PGSQL "PostgreSQL binding" on \
SDL "SDL binding" on
USE_AUTOTOOLS= libtool:22
USE_GNOME= gnomehack gnometarget pkgconfig pango
USE_ICONV= yes
USE_SQLITE= yes
USE_GMAKE= yes
USE_GL= gl glut
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \
ac_cv_prog_EMACS=no
CONFIGURE_ARGS= --enable-generational-gc=no \
--enable-gtk=no \
--with-emacs=no \
--with-gmp=no
USE_LDCONFIG= yes
PLIST_SUB= VERSION="${PORTVERSION}"
PORTDATA= *
.ifdef NOPORTDATA
IGNORE= smalltalk requires port data, unset NOPORTDATA to install
.endif
MAN1= gst.1 gst-load.1 gst-package.1 gst-sunit.1 gst-config.1 \
gst-convert.1 gst-doc.1 gst-profile.1
MLINKS= gst-load.1 gst-reload.1
INFO= gst gst-base gst-libs
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= Fails to install on sparc64
.endif
.if ${OSVERSION} < 700000
BROKEN= Bad pkg-plist (fails to detect sdl parts)
.endif
.if defined(WITHOUT_TCLTK)
CONFIGURE_ARGS+= --with-tcl=no
PLIST_SUB+= TCLTK="@comment "
.else
LIB_DEPENDS+= tk84.1:${PORTSDIR}/x11-toolkits/tk84
CONFIGURE_ARGS+= --with-tcl=${LOCALBASE}/lib/tcl8.4 \
--with-tk=${LOCALBASE}/lib/tk8.4
PLIST_SUB+= TCLTK=""
.endif
.if defined(WITHOUT_PGSQL)
PLIST_SUB+= PGSQL="@comment "
.else
USE_PGSQL= yes
.include "${PORTSDIR}/Mk/bsd.database.mk"
PLIST_SUB+= PGSQL=""
.endif
.if defined(WITHOUT_SDL)
PLIST_SUB+= SDL="@comment "
.else
USE_SDL= image mixer sdl sound ttf
PLIST_SUB+= SDL=""
.endif
post-patch:
@${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \
-e 's/ia64-\*-\* /&|amd64-*-* /' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e 's/x86_64-\*-freebsd\* /&| amd64-*-freebsd* / ' \
${WRKSRC}/libffi/configure
@${REINPLACE_CMD} -e 's/lrintl (truncl/lroundl (truncl/' \
${WRKSRC}/libgst/prims.def \
${WRKSRC}/libgst/prims.inl
post-build:
@${SED} -e 's|@bindir@|${PREFIX}/bin|g' \
${WRKSRC}/gst-mode.el.in > ${WRKSRC}/gst-mode.el
post-install:
@${MKDIR} ${DATADIR}/gtk
@${TOUCH} ${DATADIR}/gtk/.keep_me
${INSTALL_DATA} ${WRKSRC}/*.el ${PREFIX}/share/emacs/site-lisp
.include <bsd.port.post.mk>
|