a2cca7a03f
Changes: * Make use of eina. * Fix string in list and hash. * Fix array in eet_data. * Add crypto support to eet with OpenSSL. * Add GNUtls support to eet. * Make password callback work with GNUtls. * Add a function to retrieve raw signature. * Fix a corrupted pointer use in eet_cipher.c * Add some missing __UNUSED__ flags. * Fix problem reported by llvm * Add sha1 retrieval for an Eet_File. * Force fsync() after data is written to file, solve ext4 issues. * Disable fsync. Edit the code if you need it. * Make eet_data thread safe. * Fix eet pkg-config dependencies. * Fix double init of gcry. * Release eet 1.2.0
26 lines
704 B
Makefile
26 lines
704 B
Makefile
# $NetBSD: Makefile,v 1.12 2009/06/10 06:40:11 minskim Exp $
|
|
#
|
|
|
|
DISTNAME= eet-1.2.0
|
|
CATEGORIES= devel archivers
|
|
MASTER_SITES= http://download.enlightenment.org/releases/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= yazzy@yazzy.org
|
|
HOMEPAGE= http://www.enlightenment.org/
|
|
COMMENT= Library for speedy storage, retrieval, and compression
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
|
|
PKGCONFIG_OVERRIDE= eet.pc.in
|
|
|
|
.include "../../devel/eina/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|