diff options
Diffstat (limited to 'graphics/gimp1-base/Makefile')
-rw-r--r-- | graphics/gimp1-base/Makefile | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/graphics/gimp1-base/Makefile b/graphics/gimp1-base/Makefile new file mode 100644 index 00000000000..b712ba327a8 --- /dev/null +++ b/graphics/gimp1-base/Makefile @@ -0,0 +1,87 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/03/29 22:06:49 xtraeme Exp $ +# + +DISTNAME= gimp-1.2.5 +PKGNAME= gimp-base-1.2.5 +PKGREVISION= 2 +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v1.2/v1.2.5/ \ + ftp://ftp.fu-berlin.de/unix/X11/graphics/gimp/v1.2/v1.2.5/ \ + ftp://ftp.cs.umn.edu/pub/gimp/gimp/v1.2/v1.2.5/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= hubertf@NetBSD.org +HOMEPAGE= http://www.gimp.org/ +COMMENT= GNU Image Manipulation Program (base) + +BUILD_USES_MSGFMT= YES + +CONFLICTS+= gimp<=1.2.3 + +USE_BUILDLINK2= YES +USE_PKGINSTALL= YES +USE_PKGLOCALEDIR= YES +USE_X11= YES +USE_GNU_TOOLS+= make +USE_LIBTOOL= YES + +.include "../../mk/bsd.prefs.mk" + +GNU_CONFIGURE= YES +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --disable-perl +CONFIGURE_ARGS+= --disable-python +# The "print" plugin gets built separately (../../print/gimp-print) +CONFIGURE_ARGS+= --disable-print + +# Add settings for MPEG, LIBMPEG, and GAP_DECODE_MPEG to properly support +# the MPEG library from graphics/mpeg-lib that changed its name, as the +# configure script will default to searching from -lmpeg. +# +CONFIGURE_ENV+= MPEG="mpeg" +CONFIGURE_ENV+= LIBMPEG="-lmpeg_lib" +CONFIGURE_ENV+= GAP_DECODE_MPEG="gap_decode_mpeg" + +# Ensure we export symbols in the linked shared object. +LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS} + +MAKE_ENV+= X11BASE=${X11BASE} +PLIST_SUBST+= LOCALBASE=${LOCALBASE} + +BUILD_DEFS+= GIMP_WITH_HELPBROWSER + +# Configuration files +PKG_SYSCONFSUBDIR= gimp/1.2 +EGDIR= ${PREFIX}/share/examples/gimp/1.2 +CONF_FILES+= ${EGDIR}/gimprc ${PKG_SYSCONFDIR}/gimprc +CONF_FILES+= ${EGDIR}/gimprc_user ${PKG_SYSCONFDIR}/gimprc_user +CONF_FILES+= ${EGDIR}/gtkrc ${PKG_SYSCONFDIR}/gtkrc +CONF_FILES+= ${EGDIR}/gtkrc_user ${PKG_SYSCONFDIR}/gtkrc_user +CONF_FILES+= ${EGDIR}/ps-menurc ${PKG_SYSCONFDIR}/ps-menurc +CONF_FILES+= ${EGDIR}/unitrc ${PKG_SYSCONFDIR}/unitrc + +pre-build: + cd ${WRKSRC} && \ + ${CC} -o ${WRKSRC}/docs/pdb_self_doc \ + ${FILESDIR}/pdb_self_doc.c + +post-install: + ${TEST} ${PREFIX} = ${LOCALBASE} || \ + ${LN} -fs ${PREFIX}/share/aclocal/gimp.m4 \ + ${LOCALBASE}/share/aclocal/gimp.m4 + +.include "../../devel/gettext-lib/buildlink2.mk" +.include "../../graphics/mpeg-lib/buildlink2.mk" +.if defined(GIMP_WITH_HELPBROWSER) && ${GIMP_WITH_HELPBROWSER} != "no" +PLIST_SUBST+= HELPBROWSER="" +.include "../../x11/gnome-libs/buildlink2.mk" +.else +PLIST_SUBST+= HELPBROWSER="@comment " +.include "../../graphics/jpeg/buildlink2.mk" +.include "../../graphics/png/buildlink2.mk" +.include "../../graphics/tiff/buildlink2.mk" +.include "../../graphics/xpm/buildlink2.mk" +.include "../../x11/gtk/buildlink2.mk" +.endif + +.include "../../mk/bsd.pkg.mk" |