* Added Hebrew support, which arranges artist/album/title/genre names in reversed order. Although the H10 firmware can't display a string in right-to-left language correctly, EasyH10 tries to improve this situation by flipping Hebrew letters in the database. EasyH10 uses the routine only when option -b (--bidi) is specified. * Added automatic detection of a system character-encoding. EasyH10 detects the character encoding of the current system if it's not specified with -e option. * Options -n, -i, and -c for database construction were removed for simplicity. EasyH10 now has two options: -C (database rebuild) and -U (database update). * Show an error message when EasyH10 cannot initialize the routine for converting multi-byte characters to UCS-2. * Crash fix for MP3 files without read permission. * Crash fix for MP3 files with compilation flags enabled but with empty artist names. * Bug fix for an incorrect usage of returned codes from iconv. * Updated the man-page.
22 lines
653 B
Makefile
22 lines
653 B
Makefile
# $NetBSD: Makefile,v 1.2 2006/11/29 16:59:57 ghen Exp $
|
|
|
|
DISTNAME= easyh10-1.5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=easyh10/}
|
|
|
|
MAINTAINER= ghen@NetBSD.org
|
|
HOMEPAGE= http://easyh10.sourceforge.net/
|
|
COMMENT= Database tool for the iRiver H10 digital audio player
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_GNU_ICONV= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+=--with-id3tag-library=${BUILDLINK_PREFIX.libid3tag}/lib
|
|
CONFIGURE_ARGS+=--with-iconv-library=${BUILDLINK_PREFIX.iconv}/lib
|
|
|
|
.include "../../audio/libid3tag/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|