blob: c78452af09757f7230d138090cfdceaeb10eb28c (
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
|
# $NetBSD: Makefile,v 1.40 2006/10/23 15:37:52 tron Exp $
#
.include "../../devel/GConf2/Makefile.common"
PKGNAME= ${DISTNAME:S/GConf/GConf2/}
PKGREVISION= 1
CONFIGURE_ARGS+= --disable-gtk
CONFIGURE_ARGS+= ac_cv_header_ldap_h=no
OWN_DIRS= ${PKG_SYSCONFDIR}/2
OWN_DIRS+= ${PKG_SYSCONFDIR}/gconf.xml.defaults
OWN_DIRS+= ${PKG_SYSCONFDIR}/gconf.xml.mandatory
EGDIR= ${PREFIX}/share/examples/GConf2
CONF_FILES= ${EGDIR}/path ${PKG_SYSCONFDIR}/2/path
PRINT_PLIST_AWK+= /^@dirrm (include\/gconf|lib\/GConf|share\/gconf)$$/ \
{ print "@unexec $${RMDIR} -p %D/" $$2 \
" 2>/dev/null || $${TRUE}"; next}
# XXX: We need to use XML_CATALOGS here to register the installed DTD.
# But we have to wait until a public identifier is choosen for it.
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/gconf/schemas
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../net/ORBit2/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../textproc/xmlcatmgr/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|