diff options
Diffstat (limited to 'graphics/giflib/Makefile')
-rw-r--r-- | graphics/giflib/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/graphics/giflib/Makefile b/graphics/giflib/Makefile index 28a1880a33e..04c9309ad2b 100644 --- a/graphics/giflib/Makefile +++ b/graphics/giflib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2001/03/27 03:20:00 hubertf Exp $ +# $NetBSD: Makefile,v 1.29 2001/05/02 15:51:21 jlam Exp $ # DISTNAME= giflib-4.1.0 @@ -11,8 +11,6 @@ COMMENT= Tools and library routines for working with GIF images CONFLICTS= libungif-* -BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf - USE_LIBTOOL= # defined LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig @@ -31,8 +29,12 @@ MAKE_ENV+= CC="${CC} -I${LOCALBASE}/include" post-patch: ${RM} ${WRKSRC}/doc/gif2x11.html -pre-configure: - cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf +# We patch configure.in, so touch the Makefile.in files to prevent automake +# from regenerating them. +# +pre-build: + ${TOUCH} ${WRKSRC}/aclocal.m4 + ${FIND} ${WRKSRC} -name "Makefile.in" -exec ${TOUCH} {} \; post-install: ${INSTALL_DATA_DIR} ${DOCDIR} |