mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
Initial import of a powershell - a nice Gnome-based terminal emulator for the
X11 Window System. PR: 18412 Submitted by: Scott A. Moberly <smoberly@xavier.dyndns.org>
This commit is contained in:
parent
102b8c1951
commit
e570b34d1a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=29327
30
x11/powershell/Makefile
Normal file
30
x11/powershell/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# Ports collection Makefile for: powershell
|
||||
# Date created: 6 May 2000
|
||||
# Whom: Scott A. Moberly <smoberly@xavier.dyndns.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= powershell
|
||||
PORTVERSION= 0.8
|
||||
CATEGORIES= x11 gnome
|
||||
MASTER_SITES= http://powershell.sourceforge.net/download/
|
||||
|
||||
MAINTAINER= smoberly@xavier.dyndns.org
|
||||
|
||||
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||||
gdk_imlib:${PORTSDIR}/graphics/imlib
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_AUTOCONF= yes
|
||||
|
||||
GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
|
||||
|
||||
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}"
|
||||
CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome
|
||||
|
||||
ALL_TARGET= powershell
|
||||
|
||||
MAKE_ENV= ${CONFIGURE_ENV}
|
||||
|
||||
.include <bsd.port.mk>
|
1
x11/powershell/distinfo
Normal file
1
x11/powershell/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (powershell-0.8.tar.gz) = 25380001352cef5f61e627fabe7465be
|
58
x11/powershell/files/patch-aa
Normal file
58
x11/powershell/files/patch-aa
Normal file
@ -0,0 +1,58 @@
|
||||
*** configure.in.orig Sun Jan 23 17:13:12 2000
|
||||
--- configure.in Fri May 5 06:56:50 2000
|
||||
***************
|
||||
*** 3,20 ****
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
||||
|
||||
! GTK_EXTRA_LIBS="`gtk-config --libs` -lgdk_imlib -lutil"
|
||||
|
||||
! VERSION=`gtk-config --version`
|
||||
! MAJOR=`echo $VERSION | cut -f 1 -d . -`
|
||||
! MINOR=`echo $VERSION | cut -f 2 -d . -`
|
||||
! MICRO=`echo $VERSION | cut -f 3 -d . -`
|
||||
|
||||
GNOMEVERSION=`gnome-config --version`
|
||||
! GVERSION=`echo $GNOMEVERSION | cut -f 2 -d " " -`
|
||||
! GNOMEMAJOR=`echo $GVERSION | cut -f 1 -d . -`
|
||||
! GNOMEMINOR=`echo $GVERSION | cut -f 2 -d . -`
|
||||
! GNOMEMICRO=`echo $GVERSION | cut -f 3 -d . -`
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
--- 3,20 ----
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
||||
|
||||
! GTK_EXTRA_LIBS="`$GTK_CONFIG --libs` -lgdk_imlib -lutil"
|
||||
|
||||
! VERSION=`$GTK_CONFIG --version`
|
||||
! MAJOR=`echo $VERSION | cut -f 1 -d .`
|
||||
! MINOR=`echo $VERSION | cut -f 2 -d .`
|
||||
! MICRO=`echo $VERSION | cut -f 3 -d .`
|
||||
|
||||
GNOMEVERSION=`gnome-config --version`
|
||||
! GVERSION=`echo $GNOMEVERSION | cut -f 2 -d " "`
|
||||
! GNOMEMAJOR=`echo $GVERSION | cut -f 1 -d .`
|
||||
! GNOMEMINOR=`echo $GVERSION | cut -f 2 -d .`
|
||||
! GNOMEMICRO=`echo $GVERSION | cut -f 3 -d .`
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
***************
|
||||
*** 42,48 ****
|
||||
fi
|
||||
|
||||
if let $(($GNOMEMINOR < 1)); then
|
||||
! if let $((GNOMEMICRO < 13)); then
|
||||
AC_MSG_ERROR([Gnome 1.0.13 or greater required!])
|
||||
fi
|
||||
fi
|
||||
--- 42,48 ----
|
||||
fi
|
||||
|
||||
if let $(($GNOMEMINOR < 1)); then
|
||||
! if let $(($GNOMEMICRO < 13)); then
|
||||
AC_MSG_ERROR([Gnome 1.0.13 or greater required!])
|
||||
fi
|
||||
fi
|
19
x11/powershell/files/patch-ab
Normal file
19
x11/powershell/files/patch-ab
Normal file
@ -0,0 +1,19 @@
|
||||
*** Makefile.in.orig Thu Feb 17 18:47:27 2000
|
||||
--- Makefile.in Sat May 6 11:16:43 2000
|
||||
***************
|
||||
*** 15,21 ****
|
||||
CC = @CC@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CFLAGS = $(CPPFLAGS) @CFLAGS@ `gnome-config --cflags gnome gnomeui`
|
||||
! LDFLAGS = @LDFLAGS@ `gnome-config --libs gnome gnomeui` `gtk-config --libs`
|
||||
LIBS = @LIBS@ -lgdk_imlib -lzvt
|
||||
INSTALL = @INSTALL@
|
||||
|
||||
--- 15,21 ----
|
||||
CC = @CC@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CFLAGS = $(CPPFLAGS) @CFLAGS@ `gnome-config --cflags gnome gnomeui`
|
||||
! LDFLAGS = @LDFLAGS@ `gnome-config --libs gnome gnomeui` `${GTK_CONFIG} --libs`
|
||||
LIBS = @LIBS@ -lgdk_imlib -lzvt
|
||||
INSTALL = @INSTALL@
|
||||
|
1
x11/powershell/pkg-comment
Normal file
1
x11/powershell/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
PowerShell is a terminal emulator for the X11 Window System
|
8
x11/powershell/pkg-descr
Normal file
8
x11/powershell/pkg-descr
Normal file
@ -0,0 +1,8 @@
|
||||
PowerShell is a terminal emulator for the X11 Window System. It is built
|
||||
on top of the GTK+ Toolkit (www.gtk.org) and GNOME (www.gnome.org). It
|
||||
supports many very useful features such as the ability to have many
|
||||
terminals embedded in a single window, separated by notebook tabs.
|
||||
|
||||
WWW: http://powershell.sourceforge.net
|
||||
|
||||
Scott Moberly <smoberly@xavier.dyndns.org>
|
17
x11/powershell/pkg-plist
Normal file
17
x11/powershell/pkg-plist
Normal file
@ -0,0 +1,17 @@
|
||||
bin/powershell
|
||||
share/gnome/help/powershell/C/a246.htm
|
||||
share/gnome/help/powershell/C/book1.htm
|
||||
share/gnome/help/powershell/C/c154.htm
|
||||
share/gnome/help/powershell/C/c41.htm
|
||||
share/gnome/help/powershell/C/c74.htm
|
||||
share/gnome/help/powershell/C/f12.htm
|
||||
share/gnome/help/powershell/C/f17.htm
|
||||
share/gnome/help/powershell/C/topic.dat
|
||||
share/gnome/help/powershell/C/x124.htm
|
||||
share/gnome/help/powershell/C/x136.htm
|
||||
share/gnome/help/powershell/C/x175.htm
|
||||
share/gnome/help/powershell/C/x240.htm
|
||||
share/gnome/help/powershell/C/x281.htm
|
||||
share/gnome/help/powershell/C/x67.htm
|
||||
@dirrm share/gnome/help/powershell/C
|
||||
@dirrm share/gnome/help/powershell
|
Loading…
Reference in New Issue
Block a user