mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
891b7d0f4e
- Convert to USES+=tk - Take maintainership (tcltk@FreeBSD.org) - STAGE-clean
31 lines
799 B
Makefile
31 lines
799 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tkdnd
|
|
PORTVERSION= 2.6
|
|
CATEGORIES= x11-toolkits tk
|
|
MASTER_SITES= SF/${PORTNAME}/TkDND/TkDND%20${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}-src
|
|
|
|
MAINTAINER= tcltk@FreeBSD.org
|
|
COMMENT= Native drag and drop capabilities for Tk
|
|
|
|
USES+= tk:85+
|
|
USE_XORG= x11 xext
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --exec-prefix=${PREFIX} \
|
|
--with-tcl=${TCL_LIBDIR} \
|
|
--with-tk=${TK_LIBDIR} \
|
|
--with-tclinclude=${TCL_INCLUDEDIR} \
|
|
--with-tkinclude=${TK_INCLUDEDIR}
|
|
|
|
TKPKG= ${PORTNAME}${PORTVERSION}
|
|
PLIST_SUB= TKPKG=${TKPKG}
|
|
USE_LDCONFIG= ${PREFIX}/lib/${TKPKG}
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}
|
|
|
|
post-install:
|
|
@${INSTALL_MAN} ${WRKSRC}/doc/tkDND.n ${STAGEDIR}/${PREFIX}/man/mann/${MANN}
|
|
|
|
.include <bsd.port.mk>
|