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.
41 lines
1,001 B
Makefile
41 lines
1,001 B
Makefile
# New ports collection makefile for: liblingoteach
|
|
# Date created: 14 October 2003
|
|
# Whom: Marcus von Appen
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= liblingoteach
|
|
PORTVERSION= 0.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= lingoteach
|
|
|
|
MAINTAINER= mva@sysfault.org
|
|
COMMENT= A library for parsing lesson files based on the LingoTeach DTD
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack gnometarget libxml2
|
|
USE_LIBTOOL_VER= 13
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if defined(WITH_COMP)
|
|
CONFIGURE_ARGS+= --with-compression
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "liblingoteach can be used with the following switches:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " WITH_COMP=yes Enables zlib compression of"
|
|
@${ECHO_MSG} " the lesson files"
|
|
@${ECHO_MSG} " WITH_DEBUG=yes Enables additional debugging"
|
|
@${ECHO_MSG} " information and output"
|
|
@${ECHO_MSG} ""
|
|
|
|
.include <bsd.port.mk>
|