blob: cd01e3e162b545cb62918f28b5b723c1b1ed85e7 (
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
36
37
38
39
|
# $NetBSD: Makefile,v 1.8 2003/06/02 01:18:15 jschauma Exp $
#
DISTNAME= gnome2-dirs-${GNOME_DIRS_VERSION}
WRKSRC= ${WRKDIR}
CATEGORIES= misc gnome
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= tech-pkg@netbsd.org
HOMEPAGE= # empty
COMMENT= Shared GTK/GNOME (v2) directories
NO_BUILD= # defined
NO_CHECKSUM= # defined
NO_CONFIGURE= # defined
NO_EXTRACT= # defined
USE_BUILDLINK2= YES
.include "../../mk/bsd.prefs.mk"
.if ${X11PREFIX} == ${LOCALBASE}
DEPENDS+= gnome-dirs>=1.0:../../misc/gnome-dirs
GNOME_DIRS=
.else
GNOME_DIRS= ${GNOME_DIRS_COMMON}
.endif
GNOME_DIRS+= share/applications
GNOME_DIRS+= share/application-registry
GNOME_DIRS+= share/control-center-2.0
GNOME_DIRS+= share/control-center-2.0/capplets
GNOME_DIRS+= share/gnome-2.0
GNOME_DIRS+= share/gnome-2.0/ui
GNOME_DIRS+= share/gnome/wm-properties
.include "../../misc/gnome-dirs/Makefile.common"
.include "../../mk/bsd.pkg.mk"
|