eb3a685196
Fixes - If the toplevel directory of a source isn't writable, then mark the whole source as readonly (Mark) - Plug various leaks (Kjartan) Translators - Christophe Merlet (RedFox) (fr) - Alessio Frusciante (it) - Žygimantas Beručka (lt) - Li-Jen Hsin (zh_TW)
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.32 2004/10/26 20:57:53 jmmv Exp $
|
|
#
|
|
|
|
.include "../../devel/GConf2/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/GConf/GConf2/}
|
|
|
|
USE_PKGINSTALL= YES
|
|
|
|
CONFIGURE_ARGS+= --disable-gtk
|
|
|
|
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} ${PREFIX}/share/gconf/schemas
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/popt/buildlink3.mk"
|
|
.include "../../net/ORBit2/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../textproc/xmlcatmgr/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|