fdb723c2fa
most new distfiles on gnome master sites have been using this for a while now, and soon no new .tar.bz2/tar.gz distfiles are allowed anymore upstream as discussed with aja@
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# $OpenBSD: gnome.port.mk,v 1.41 2011/09/12 12:02:39 jasper Exp $
|
|
#
|
|
# Module for GNOME related ports
|
|
#
|
|
|
|
.if (defined(GNOME_PROJECT) && defined(GNOME_VERSION))
|
|
DISTNAME= ${GNOME_PROJECT}-${GNOME_VERSION}
|
|
VERSION= ${GNOME_VERSION}
|
|
MASTER_SITES?= ${MASTER_SITE_GNOME:=sources/${GNOME_PROJECT}/${GNOME_VERSION:C/^([0-9]+\.[0-9]+).*/\1/}/}
|
|
EXTRACT_SUFX?= .tar.xz
|
|
CATEGORIES+= x11/gnome
|
|
.endif
|
|
|
|
.if ${NO_BUILD:L} == "no"
|
|
USE_LIBTOOL?= Yes
|
|
MODULES+= textproc/intltool
|
|
.endif
|
|
|
|
# Set to 'yes' if there are .desktop files in the package list.
|
|
.if defined(DESKTOP_FILES) && ${DESKTOP_FILES:L} == "yes"
|
|
MODGNOME_RUN_DEPENDS+= devel/desktop-file-utils
|
|
.endif
|
|
|
|
# Set to 'yes' if there are .xml GNOME help files under share/gnome/help/
|
|
# in the pkg list and it calls gnome_help_display() -- gnome-doc-utils is
|
|
# here to make sure we have a dependency on rarian (scrollkeeper-*) and
|
|
# have access to the gnome-doc-* tools (not always needed but easier).
|
|
.if defined(MODGNOME_HELP_FILES) && ${MODGNOME_HELP_FILES:L} == "yes"
|
|
MODGNOME_BUILD_DEPENDS+=x11/gnome/doc-utils
|
|
MODGNOME_RUN_DEPENDS+= x11/gnome/yelp
|
|
.endif
|
|
|
|
.if defined(MODGNOME_BUILD_DEPENDS)
|
|
BUILD_DEPENDS+= ${MODGNOME_BUILD_DEPENDS}
|
|
.endif
|
|
|
|
.if defined(MODGNOME_RUN_DEPENDS)
|
|
RUN_DEPENDS+= ${MODGNOME_RUN_DEPENDS}
|
|
.endif
|
|
|
|
USE_GMAKE?= Yes
|
|
|
|
FAKE_FLAGS += itlocaledir="${PREFIX}/share/locale/"
|