mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
30 lines
701 B
Makefile
30 lines
701 B
Makefile
# New ports collection makefile for: libexif
|
|
# Date created: Tue Feb 26 19:02:44 MST 2002
|
|
# Whom: Peter Schmiedeskamp
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libexif
|
|
PORTVERSION= 0.5.12
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= yinjieh@csie.nctu.edu.tw
|
|
COMMENT= Library to read digital camera file meta-data
|
|
|
|
USE_GETTEXT= yes
|
|
USE_GNOME= gnomehack gnometarget pkgconfig
|
|
USE_LIBTOOL_VER=13
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib -lintl"
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-g -Wall||g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|