diff options
author | markd <markd> | 2008-09-03 21:31:12 +0000 |
---|---|---|
committer | markd <markd> | 2008-09-03 21:31:12 +0000 |
commit | 1eb2d0ef8141154612b32c2565f9bbe192cd5f48 (patch) | |
tree | c983aad9612df709c2543143209e19df5341bbde /print/ghostscript/buildlink3.mk | |
parent | 7d1f253ee023ecd1ec525ab00f9ada3f0d73602b (diff) | |
download | pkgsrc-1eb2d0ef8141154612b32c2565f9bbe192cd5f48.tar.gz |
Build libgs as a shared library as increasingly other packages expect it
to be there and want to link with it. Bump PKGREVISION.
Diffstat (limited to 'print/ghostscript/buildlink3.mk')
-rw-r--r-- | print/ghostscript/buildlink3.mk | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/print/ghostscript/buildlink3.mk b/print/ghostscript/buildlink3.mk new file mode 100644 index 00000000000..2003a0c9a7a --- /dev/null +++ b/print/ghostscript/buildlink3.mk @@ -0,0 +1,39 @@ +# $NetBSD: buildlink3.mk,v 1.1 2008/09/03 21:31:12 markd Exp $ + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ +GHOSTSCRIPT_BUILDLINK3_MK:= ${GHOSTSCRIPT_BUILDLINK3_MK}+ + +.if ${BUILDLINK_DEPTH} == "+" +BUILDLINK_DEPENDS+= ghostscript +.endif + +BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nghostscript} +BUILDLINK_PACKAGES+= ghostscript +BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}ghostscript + +.if ${GHOSTSCRIPT_BUILDLINK3_MK} == "+" +BUILDLINK_API_DEPENDS.ghostscript+= ghostscript>=8.63nb1 +BUILDLINK_PKGSRCDIR.ghostscript?= ../../print/ghostscript +.endif # GHOSTSCRIPT_BUILDLINK3_MK + +.include "../../graphics/png/buildlink3.mk" +.include "../../devel/zlib/buildlink3.mk" + +pkgbase := ghostscript +.include "../../mk/pkg-build-options.mk" + +.if !empty(PKG_BUILD_OPTIONS.ghostscript:Mcups) +.include "../../print/cups/buildlink3.mk" +.endif + +.if !empty(PKG_BUILD_OPTIONS.ghostscript:Mfontconfig) +.include "../../fonts/fontconfig/buildlink3.mk" +.endif + +.if !empty(PKG_BUILD_OPTIONS.ghostscript:Mx11) +.include "../../x11/libX11/buildlink3.mk" +.include "../../x11/libXt/buildlink3.mk" +.include "../../x11/libXext/buildlink3.mk" +.endif + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} |