mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 09:56:43 -04:00
PDCurses is a Curses and Panel implementation for Microsoft Windows.
This port compiles it using MinGW32. WWW: http://pdcurses.sourceforge.net/ PR: ports/96459 Submitted by: Ed Schouten <ed@fxq.nl>
This commit is contained in:
parent
dfbd584750
commit
006f48da9d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=161610
5 changed files with 56 additions and 0 deletions
|
@ -614,6 +614,7 @@
|
|||
SUBDIR += mingw32-bin-msvcrt
|
||||
SUBDIR += mingw32-binutils
|
||||
SUBDIR += mingw32-gcc
|
||||
SUBDIR += mingw32-pdcurses
|
||||
SUBDIR += mips-rtems-binutils
|
||||
SUBDIR += mips-rtems-g77
|
||||
SUBDIR += mips-rtems-gcc
|
||||
|
|
41
devel/mingw32-pdcurses/Makefile
Normal file
41
devel/mingw32-pdcurses/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# New ports collection makefile for: mingw32-pdcurses
|
||||
# Date created: 28 April 2006
|
||||
# Whom: Ed Schouten <ed@fxq.nl>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= pdcurses
|
||||
PORTVERSION= 2.8
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
PKGNAMEPREFIX= mingw32-
|
||||
DISTNAME= PDCurses-${PORTVERSION}
|
||||
|
||||
MAINTAINER= ed@fxq.nl
|
||||
COMMENT= Curses and Panel terminal library for Windows
|
||||
|
||||
BUILD_DEPENDS= ${PKGNAMEPREFIX}gcc:${PORTSDIR}/devel/${PKGNAMEPREFIX}gcc \
|
||||
mingwm10.dll:${PORTSDIR}/devel/mingw32-bin-msvcrt
|
||||
|
||||
USE_GMAKE= yes
|
||||
|
||||
PDCURSES_LIBS= pdcurses.a panel.a
|
||||
|
||||
do-build:
|
||||
@${GMAKE} -C ${WRKSRC}/win32 -f gccwin32.mak PDCURSES_SRCDIR=.. \
|
||||
CC=${PKGNAMEPREFIX}gcc LIBEXE=${PKGNAMEPREFIX}ar \
|
||||
SHELL=${SH} ${PDCURSES_LIBS}
|
||||
|
||||
do-install:
|
||||
.for f in curses.h curspriv.h panel.h term.h
|
||||
${INSTALL_DATA} ${WRKSRC}/$f ${PREFIX}/mingw32/include/$f
|
||||
.endfor
|
||||
|
||||
.for f in ${PDCURSES_LIBS}
|
||||
${INSTALL_DATA} ${WRKSRC}/win32/$f ${PREFIX}/mingw32/lib/lib$f
|
||||
.endfor
|
||||
${LN} -sf libpdcurses.a ${PREFIX}/mingw32/lib/libcurses.a
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/mingw32-pdcurses/distinfo
Normal file
3
devel/mingw32-pdcurses/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (PDCurses-2.8.tar.gz) = cd3a67c94cfa6686678058f18bf87982
|
||||
SHA256 (PDCurses-2.8.tar.gz) = e288ac5191de78c31635372f7cd31676561f5a9588258f41dac771ee9248b095
|
||||
SIZE (PDCurses-2.8.tar.gz) = 325074
|
4
devel/mingw32-pdcurses/pkg-descr
Normal file
4
devel/mingw32-pdcurses/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
PDCurses is a Curses and Panel implementation for Microsoft Windows.
|
||||
This port compiles it using MinGW32.
|
||||
|
||||
WWW: http://pdcurses.sourceforge.net/
|
7
devel/mingw32-pdcurses/pkg-plist
Normal file
7
devel/mingw32-pdcurses/pkg-plist
Normal file
|
@ -0,0 +1,7 @@
|
|||
mingw32/include/curses.h
|
||||
mingw32/include/curspriv.h
|
||||
mingw32/include/panel.h
|
||||
mingw32/include/term.h
|
||||
mingw32/lib/libcurses.a
|
||||
mingw32/lib/libpanel.a
|
||||
mingw32/lib/libpdcurses.a
|
Loading…
Add table
Reference in a new issue