b358c26f23
2.14.0 ====== Misc - Improved manual page (Christopher Hanna) - Uses the new g_slice API (Benoît Dejean) - Got rid of padding members in private structs (Benoît) - Speed up the installation of multiple schema files (Josselin Mouette, Mark LcLoughlin) Fixes - Only calls closelog() when it has HAVE_SYSLOG_H (Tor Lillqvist) - Fixed a memory leak, bugs #332528 and #334047 (Kjartan Maraas, Matthias Clasen) Translators - Petr Tomeš (cs) - Rhys Jones (cy) - Ole Laursen (da) - Hendrik Richter (de) - Kostas Papadimas (el) - Ivar Smolin (et) - Iñaki Larrañaga (eu) - Rajesh Ranjan (hi) - Gabor Kelemen (hu) - Alessio Frusciante (it) - Takeshi AIHANA (ja) - Changwoo Ryu (ko) - Gnome PL Team (pl) - Evandro Fernandes Giovanini (pt_BR) - Duarte Loreto (pt) - Mişu Moldovan (ro) - Leonid Kanter (ru) - Laurent Dhima (sq) - Слободан Д. Средојевић (sr) - Christian Rose (sv) - Maxim Dziumanenko (uk) - Funda Wang (zh_CN) 2.13.5 ====== Features - Save translations in separate file with markup backend's "meged" mode (Mark McLoughlin) - Switch on "merged" mode for the defaults database (Mark McLoughlin) - Make gconf_value_compare() and gconf_entry_equal() public (Jorn Baayen) - Lots of new docs (Dinoop Thomas) Fixes - Remove unused --enable-gconf-source configure option (Mark McLoughlin) - Fix parallel build (Thomas Vander Stichele) - Make gconf_client_remove_dir() clear the dir's cache (Vincent Untz) - Win32 build fix - include DLLs in zipfile package (Tor Lillqvist) - Make gconf_value_decode() work with schemas (Nicolas Peninguy) - Fix segault unescaping strings (Dan Williams) - Remove C99 usage (Jens Granseuer) Translators - Ales Nyakhaychyk (be) - Alexander Shopov (bg) - Jordi Mallach (ca) - Adam Weinberger (en_CA) - Francisco Javier F. Serrador (es) - Ivar Smolin (et) - Ilkka Tuohela (fi) - Christophe Merlet (RedFox) (fr) - Ignacio Casal Quinteiro (gl) - Ankit Patel (gu) - Takeshi AIHANA (ja) - Žygimantas Beručka (lt) - Kjartan Maraas (nb) - Tino Meinen (nl) - Åsmund Skjæveland (nn) - Kjartan Maraas (no) - Evandro Fernandes Giovanini (pt_BR) - Marcel Telka (sk) - Theppitak Karoonboonyanan (th) - Clytie Siddall (vi) - Abel Cheung (zh_HK) - Chao-Hsiung Liao (zh_TW)
32 lines
1 KiB
Makefile
32 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.38 2006/03/30 20:50:02 jmmv Exp $
|
|
#
|
|
|
|
.include "../../devel/GConf2/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/GConf/GConf2/}
|
|
|
|
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} ${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"
|