# $OpenBSD: Makefile.template,v 1.35 2001/09/28 01:48:58 naddy Exp $
# $FreeBSD/NetBSD: credit FreeBSD/NetBSD if thats where the port came from $
# Original from: credit the original author here
#
# Replace ??? with appropriate values
# Remove extraneous comments before commit.

# Reasons why the port/package shouldn't be built
#
#ONLY_FOR_ARCHS=	???
#COMES_WITH=		???
#BROKEN=		"reason"
#RESTRICTED=		"reason"

#
# Very short description of the package, 60 chars max
#
COMMENT=		"Tcl extensions, including POSIX and XPG/3 attributes"
# COMMENT-foo=		"???"	for multi packages

# 
# What port/package will be created
#
DISTNAME=		tclx8.3
#PKGNAME=		???
#PKGNAME-foo=		???	for multi packages
CATEGORIES=		devel
#NEED_VERSION=		?.??
# Always put the NEED_VERSION line right after CATEGORIES

HOMEPAGE=		http://tclx.sourceforge.net/

# where to send bitches about this port
# Put a full-fledged email address, like
# MAINTAINER=	John Doe <doe57@machine.somewhere.org>
# Default value is ports.openbsd.org, no need to fill in
MAINTAINER=		Jose Nazario <jose@crimelabs.net>

# Licensing:  This determines what we can distribute.
# When you determine the license type, make sure to look at ALL distfiles.
# Every distfile can have a different license.  The PERMIT_* values are
# determined by the most restrictive license.  If you have two licenses
# that are in conflict, set PERMIT_* based on the most restrictive one.
# Make SURE you get these values right.

# GPL
PERMIT_PACKAGE_CDROM=	Yes 
PERMIT_PACKAGE_FTP=	Yes
PERMIT_DISTFILES_CDROM=	Yes 
PERMIT_DISTFILES_FTP=	Yes

# where the source files and patches can be fetched
#
MASTER_SITES=		ftp://ftp.scriptics.com/pub/tcl/tclx/
#MASTER_SITES=		${MASTER_SITE_SOURCEFORGE:=tclx/}
#MASTER_SITE_SUBDIR=	???
# if more master sites are needed...
#MASTER_SITES0=
# ...
#DISTFILES=		???
#EXTRACT_ONLY=		???
#EXTRACT_SUFX=		.tar.Z

#DIST_SUBDIR=		???

# PATCHFILES are also retrieved from MASTER_SITES*
#PATCHFILES=		???
#PATCH_DIST_STRIP=	-p0

# Dependencies
#
#FETCH_DEPENDS=		???
#BUILD_DEPENDS=		???
#RUN_DEPENDS=		???
#LIB_DEPENDS=		???

#MAKE_FLAGS=		???
#MAKE_ENV=		???
#FAKE_FLAGS=		???

# build/configuration variables
#
# requires bsd.port.mk 1.89 or later
#
SEPARATE_BUILD=		concurrent
#SEPARATE_BUILD=	simple  (configure/build still recreates files in source)
#USE_X11=		Yes
#USE_GMAKE=		Yes
# Programs that come with libtool should NOT use this option.
# Instead they should have the appropriate patches added if needed
# to bring the OpenBSD support up to spec.
#USE_LIBTOOL=		Yes
# Set CONFIGURE_STYLE to value corresponding to some standard configuration
# 	  perl: perl's MakeMaker Makefile.PL
# 	  gnu [autoconf] [old] [dest]: gnu style configure (old: no
# 	  sysconfdir), (dest: add DESTDIR, does not handle it),
# 	  (autoconf: needed by port, implies gnu)
# 	XXX: cygnus products do NOT use autoconf for making the main 
# 		configure from configure.in
# 	  imake [noman]: port uses imake for configuration.
#   	  (noman: no man page installation)
# 	  simple: port has its own configure script
CONFIGURE_STYLE=	gnu
CONFIGURE_ARGS+=	--with-tcl=/usr/local/lib/tcl8.3/ \
			--with-tk=/usr/local/lib/tk8.3/

#CONFIGURE_ARGS+=	${CONFIGURE_SHARED}
#CONFIGURE_ENV=		???

# Is the build automagic or is it interactive
#
#IS_INTERACTIVE=	Yes

# Assume you have one multiple choice flavor: 1 2 3 and switches a b.
# You would write
#
#FLAVORS=1 2 3 a b
#FLAVOR?=
# grab multiple choice value
#CHOICE=${FLAVOR:L:Na:Nb}
# check that CHOICE is 1 OR 2 OR 3, or error out
#.if ${CHOICE} == "1"
# code for 1
#.elif ${CHOICE} == "2"
# code for 2
#.elif ${CHOICE} == "3"
# code for 3
#.else
#ERRORS+= "Fatal: Conflicting flavor: ${FLAVOR}"
#.endif
# check for switches
#.if ${FLAVOR:L:Ma}
# code for a
#.endif
#.if ${FLAVOR:L:Mb}
# code for b
#.endif

# Things that we don't want to do for this port/package
# Generally, DON'T set anything to No if it's not needed.
# The time gained is not worth it.
#
#NO_DEPENDS=		Yes
#NO_CHECKSUM=		Yes
#NO_BUILD=		Yes
#NO_PKG_REGISTER=	Yes

# Overrides for default values
#
#CFLAGS=		???
#LDFLAGS=		???
#MAKE_FILE=		???
#SCRIPTS_ENV=		???
#WRKDIR=		??? if other than work
#WRKDIST=		${WRKDIR}/unix
WRKSRC=			${WRKDIST}/unix
#WRKBUILD=		${WRKSRC}/unix

#ALL_TARGET=		???
#INSTALL_TARGET=	???

.include <bsd.port.mk>
