9637f7852e
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2020/01/26 17:32:27 rillig Exp $
|
|
|
|
DISTNAME= tk${TK_VERSION}-src
|
|
PKGNAME= tk-${TK_VERSION}
|
|
PKGREVISION= 1
|
|
CATEGORIES= x11 lang
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.tcl.tk/
|
|
COMMENT= Graphical toolkit for TCL
|
|
LICENSE= 2-clause-bsd
|
|
|
|
.include "../../x11/tk85/Makefile.version"
|
|
|
|
WRKSRC= ${WRKDIR}/tk${TK_VERSION}
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_DIRS= unix
|
|
BUILD_DIRS= ${CONFIGURE_DIRS}
|
|
CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl}/lib
|
|
CONFIGURE_ARGS+= --x-libraries=${X11BASE}/lib${LIBABISUFFIX:Q}
|
|
CONFIGURE_ARGS+= --x-libraries=${X11BASE}/lib${LIBABISUFFIX:Q}
|
|
CONFIGURE_ENV+= LIB_RUNTIME_DIR=${PREFIX}/lib
|
|
PTHREAD_OPTS+= require
|
|
|
|
PKGCONFIG_OVERRIDE+= unix/tk.pc.in
|
|
|
|
TEST_TARGET= test
|
|
|
|
.if defined(ABI) && ${ABI} == "64"
|
|
CONFIGURE_ARGS+= --enable-64bit
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
SUBST_CLASSES+= tk-config
|
|
SUBST_STAGE.tk-config= post-build
|
|
SUBST_FILES.tk-config= unix/tkConfig.sh
|
|
SUBST_SED.tk-config+= -e "s|${WRKSRC}/unix|${PREFIX}/lib|"
|
|
SUBST_SED.tk-config+= -e "s|${WRKSRC}|${PREFIX}/include/tk|"
|
|
|
|
PLIST_SUBST+= SONUM=${TK_SONUM}
|
|
PLIST_SUBST+= BASEVER=${TK_BASEVER}
|
|
|
|
.include "../../lang/tcl85/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|