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.
27 lines
641 B
Makefile
27 lines
641 B
Makefile
# New ports collection makefile for: xls2xml
|
|
# Date created: 4 November 1999
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xls2xml
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://arturo.directmail.org/filters/archive/
|
|
MASTER_SITE_SUBDIR= sobomax
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A utility for converting MS Excel files to XML
|
|
|
|
LIB_DEPENDS= cole.2:${PORTSDIR}/textproc/cole \
|
|
xml.5:${PORTSDIR}/textproc/libxml
|
|
|
|
USE_LIBTOOL_VER=13
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lcole"
|
|
|
|
.include <bsd.port.mk>
|