blob: 3e62bf864d272a4014b26e2906649643847b5285 (
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
|
# New ports collection makefile for: libpixman
# Date created: 2004-10-06
# Whom: Michael Johnson <ahze@ahze.net>
#
# $FreeBSD$
#
PORTNAME= libpixman
PORTVERSION= 0.1.4
CATEGORIES= graphics
MASTER_SITES= http://cairographics.org/snapshots/
MAINTAINER= gnome@FreeBSD.org
COMMENT= Pixel region library
USE_REINPLACE= yes
USE_LIBTOOL_VER=15
USE_GNOME= pkgconfig gnometarget gnomehack
INSTALLS_SHLIB= yes
PLIST_FILES= include/pixman.h \
lib/libpixman.a \
lib/libpixman.so \
lib/libpixman.so.1 \
libdata/pkgconfig/libpixman.pc
.include <bsd.port.pre.mk>
post-patch:
.if ${OSVERSION} < 500000
@${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \
${WRKSRC}/src/pixman.h
.endif
.include <bsd.port.post.mk>
|