535382b891
- Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey - Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED Approved by: portmgr (pav)
41 lines
949 B
Makefile
41 lines
949 B
Makefile
# New ports collection makefile for: giflib
|
|
# Date created: 03 May 1997
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= giflib
|
|
PORTVERSION= 4.1.6
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%204.x/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMESUFFIX= ${NOX11SUFFIX}${PKGNAMESUFFIX2}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Tools and library routines for working with GIF images
|
|
|
|
USE_BZIP2= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
.if defined(WITHOUT_X11)
|
|
PLIST_SUB+= X11='@comment '
|
|
CONFIGURE_ARGS+= --with-x=no
|
|
NOX11SUFFIX= -nox11
|
|
.else
|
|
USE_XORG= sm x11
|
|
PLIST_SUB+= X11=''
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.png ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|