c487cb967a
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
30 lines
838 B
Makefile
30 lines
838 B
Makefile
# $NetBSD: Makefile,v 1.11 2004/10/03 00:13:34 tv Exp $
|
|
#
|
|
|
|
DISTNAME= ucl-1.02
|
|
PKGREVISION= 2
|
|
CATEGORIES= devel archivers
|
|
MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/
|
|
|
|
MAINTAINER= cjep@NetBSD.org
|
|
HOMEPAGE= http://www.oberhumer.com/opensource/ucl/
|
|
COMMENT= Portable lossless data compression library
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_BUILDLINK3= YES
|
|
USE_LIBTOOL= YES
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --enable-shared=yes
|
|
|
|
# Avoid an ICE in gcc2 on sparc64
|
|
CONFIGURE_ENV+= F77=${FALSE}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ucl
|
|
for i in simple.c lutil.h uclpack.c Makefile; do \
|
|
${INSTALL_DATA} ${WRKSRC}/examples/$$i ${PREFIX}/share/examples/ucl;\
|
|
done;
|
|
cd ${WRKSRC}/examples && libtool --mode=install ${INSTALL_PROGRAM} uclpack ${PREFIX}/bin
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|