pkgsrc/graphics/djvulibre-lib/Makefile
drochner 7ad230f24c Fix an undefined symbol problem which rendered this pkg unusable
after the last update.
(due to use of a locking primitive which is only available on 486+
while gcc defaults to -march=i386)
This might also fix PR pkg/40630 by Kamel Derouiche.
bump PKGREVISION
2009-02-20 10:52:56 +00:00

33 lines
973 B
Makefile

# $NetBSD: Makefile,v 1.6 2009/02/20 10:52:56 drochner Exp $
DISTNAME= djvulibre-3.5.21
PKGNAME= djvulibre-lib-3.5.21
PKGREVISION= 1
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=djvu/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://djvulibre.djvuzone.org/
COMMENT= Compression library for scanned documents
PKG_DESTDIR_SUPPORT= user-destdir
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= pkg-config
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE+= libdjvu/ddjvuapi.pc.in
BUILD_DIRS= libdjvu
INSTALL_DIRS= libdjvu
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MNetBSD-[5-9]*-i386) && !empty(PKGSRC_COMPILER:Mgcc)
# The library uses Intel atomic intrinsics which don't work with NetBSD's
# default arch setting of "i386" because eg. cmpxchgl is 486+.
# On NetBSD-5+, i386 is desupported so we can safely assume a 486.
CFLAGS+= -march=i486
.endif
.include "../../graphics/jpeg/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"