mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
a84c115a09
Approved by: portmgr (not really, but touches unstaged ports)
35 lines
767 B
Makefile
35 lines
767 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tkpng
|
|
PORTVERSION= 0.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics tk
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PNG support for Tcl/Tk
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/license.terms
|
|
|
|
USES+= tk tar:tgz
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= --with-tcl=${TCL_LIBDIR} \
|
|
--with-tk=${TK_LIBDIR} \
|
|
--with-tclinclude=${TCL_INCLUDEDIR} \
|
|
--with-tkinclude=${TK_INCLUDEDIR} \
|
|
--exec-prefix=${PREFIX} \
|
|
--enable-shared
|
|
|
|
TKPKG= ${PORTNAME}${PORTVERSION}
|
|
PLIST_SUB= VER=${PORTVERSION} TKPKG=${TKPKG} TKLIBVER=${TKLIBVER}
|
|
|
|
PLIST_FILES= lib/${TKPKG}/lib${TKPKG}.so \
|
|
lib/${TKPKG}/pkgIndex.tcl
|
|
PLIST_DIRS= lib/${TKPKG}
|
|
|
|
.include <bsd.port.mk>
|