diff options
Diffstat (limited to 'graphics/pixman/Makefile')
-rw-r--r-- | graphics/pixman/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/graphics/pixman/Makefile b/graphics/pixman/Makefile new file mode 100644 index 0000000..f4580b7 --- /dev/null +++ b/graphics/pixman/Makefile @@ -0,0 +1,57 @@ +# $OpenBSD: Makefile.template,v 1.83 2019/07/02 12:03:14 sthen Exp $ +COMMENT = ??? +# COMMENT-foo = ??? for multi packages + +# +# What port/package will be created +# +DISTNAME = pixman-0.38.4 + +CATEGORIES = graphics + +SHARED_LIBS = pixman-1 38.4 + +HOMEPAGE = https://www.pixman.org/ + +MAINTAINER = xenocara@openbsd.org + +# MIT +PERMIT_PACKAGE = Yes +PERMIT_DISTFILES = Yes + +# "make port-lib-depends-check" can help +#WANTLIB = ??? + +# where the source files and patches can be fetched +# +MASTER_SITES = https://cairographics.org/releases/ + + +# build/configuration variables +# +SEPARATE_BUILD = Yes +CONFIGURE_STYLE = gnu + +.if ${MACHINE_ARCH} == arm +CONFIGURE_ARGS += --disable-arm-simd --disable-arm-neon +.endif + +# for gnu stuff +#AUTOCONF_VERSION = ??? (defaults to 2.13) +#AUTOMAKE_VERSION = ??? (defaults to 1.4) +# config.guess and others are copied here +#MODGNU_CONFIG_GUESS_DIRS = ??? (defaults to ${WRKSRC}) + +# Is the build automagic or is it interactive +# +#IS_INTERACTIVE = Yes +#TEST_IS_INTERACTIVE = Yes + +# Assume you have one multiple choice flavor: 1 2 3 and switches a b. +# You would write +# +#NO_BUILD = Yes +#NO_TEST = Yes + + +.include <bsd.port.mk> |