f892e389cb
* Mime-types Changes: - Added application/x-cue (CD image cuesheet) - Added application/vnd.ms-access (Access database) - Added application/x-7z-compressed (7-zip archive) - Added application/mathematica (Mathematica) - Added application/x-gedcom (GEDCOM genealogy) - Added application/x-shorten (Shorten audio) - Added video/3gpp (3GPP video) - Added application/docbook+xml (Docbook) - Added application/x-sqlite (SQLite database) - Added application/x-go-sgf (Go saved games) - Added application/x-m4 (M4 scripts) - Added a few Ogg related mime-types - Added application/x-cbr and application/x-cbz (Comic books archives) - Added flv-application/octet-stream (Flash video) - Added application/x-gnuplot (Gnuplot) - Added application/x-srt (Text subtitle files) * New translations: - zh_TW * Spec changes: - Make the mime cache contain an mmappable binary format - Add acronym and expanded-acronym - Add recommendations for duplicate globs handling
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.17 2006/03/30 20:47:19 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= shared-mime-info-0.17
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://freedesktop.org/~hadess/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://www.freedesktop.org/Software/shared-mime-info
|
|
COMMENT= Core database of common types
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
USE_PKGLOCALEDIR= YES
|
|
USE_TOOLS+= pkg-config
|
|
|
|
CONFIGURE_ARGS+= --disable-update-mimedb
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CPPFLAGS+= -DPREFIX="\"${PREFIX}\""
|
|
|
|
DEINSTALL_TEMPLATE+= ${PKGDIR}/INSTALL
|
|
|
|
FILES_SUBST+= MIMEDB_PATH="${PREFIX}/share/mime"
|
|
FILES_SUBST+= UPDATE_MIMEDB="${PREFIX}/bin/update-mime-database"
|
|
|
|
PRINT_PLIST_AWK+= /^share\/mime\/packages/ { print; next; }
|
|
PRINT_PLIST_AWK+= /^share\/mime/ { next; }
|
|
PRINT_PLIST_AWK+= /^@dirrm share\/mime\/packages$$/ { print; next; }
|
|
PRINT_PLIST_AWK+= /^@dirrm share\/mime/ { next; }
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../textproc/intltool/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|