blob: 367868606b3e4c24e334e36ebfb2ddfc7b5e75f3 (
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
|
# $NetBSD: Makefile,v 1.30 2003/08/11 13:28:08 seb Exp $
DISTNAME= xpm-3.4k
PKGREVISION= 1
CATEGORIES= graphics x11
MASTER_SITES= http://koala.ilog.fr/ftp/pub/xpm/ \
${MASTER_SITE_XCONTRIB:=libraries/}
MAINTAINER= mycroft@NetBSD.org
HOMEPAGE= http://www.inria.fr/koala/lehors/xpm.html
COMMENT= The X Pixmap library
USE_BUILDLINK2= # defined
USE_IMAKE= # defined
.include "../../mk/bsd.prefs.mk"
# Check if we got Xpm distributed with XFree86 4.x or Solaris 9.
.if ${OPSYS} != "SunOS"
. if exists(${X11BASE}/include/X11/xpm.h) && \
exists(${X11BASE}/lib/X11/config/X11.tmpl)
_IS_BUILTIN_XPM!= ${EGREP} -c NormalLibXpm ${X11BASE}/lib/X11/config/X11.tmpl || ${TRUE}
. if ${OPSYS} == "IRIX"
_IS_BUILTIN_XPM= 1
. endif
. else
_IS_BUILTIN_XPM= 0
. endif
.else
_IS_BUILTIN_XPM!= (/usr/sbin/pkgchk -l SUNWxwinc | ${EGREP} -c xpm.h) || ${TRUE}
.endif
.if ${_IS_BUILTIN_XPM} != "0"
PKG_SKIP_REASON= "${PKGNAME} is part of your X11 distribution"
.endif
.if (${OPSYS} == SunOS)
post-install:
cd ${PREFIX}/lib && \
${RM} -f libXpm.so.4 && \
${LN} -f libXpm.so.4.11 libXpm.so.4
.endif
.include "../../mk/bsd.pkg.mk"
|