blob: d1ca63fad5a4ea42d3ce071a88ae6241710556ba (
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.1
CATEGORIES= graphics
MASTER_SITES= http://cairographics.org/snapshots/
MAINTAINER= ahze@ahze.net
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>
|