mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
- Remove x11-toolkits/xg. It expired on 2007-10-28.
This commit is contained in:
parent
ba76d57c2a
commit
d892537673
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=229593
1
MOVED
1
MOVED
@ -3832,3 +3832,4 @@ x11-themes/xfce4-icon-theme||2009-03-02|got obsolete by xfce 4.6 update
|
||||
comms/py-gammu||2009-03-04|incorporated into comms/gammu
|
||||
devel/p5-Getopt-Mixed||2009-03-06|Use Getopt::Long
|
||||
x11-toolkits/scx||2009-03-06|Abandoned upstream
|
||||
x11-toolkits/xg||2009-03-06|Abandoned upstream
|
||||
|
@ -301,7 +301,6 @@
|
||||
SUBDIR += xclasses
|
||||
SUBDIR += xforms
|
||||
SUBDIR += xforms-i18n
|
||||
SUBDIR += xg
|
||||
SUBDIR += xmhtml
|
||||
SUBDIR += xscoop
|
||||
SUBDIR += xview
|
||||
|
@ -1,41 +0,0 @@
|
||||
# New ports collection makefile for: xg
|
||||
# Date created: 3 December 1998
|
||||
# Whom: Andrey Zakhvatov
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= xg
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= x11-toolkits
|
||||
MASTER_SITES= ftp://messners.com/code/ \
|
||||
http://www.messners.com/code/
|
||||
DISTNAME= ${PORTNAME}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Windows(tm) controls - like widget set for Motif(tm)
|
||||
|
||||
WRKSRC= ${WRKDIR}/Xg-${PORTVERSION}
|
||||
USE_XORG= x11
|
||||
USE_MOTIF= yes
|
||||
MAKEFILE= makefile
|
||||
|
||||
DEPRECATED= Project is dead, last release from 1998
|
||||
EXPIRATION_DATE= 2007-10-28
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/src/libxg.a ${PREFIX}/lib
|
||||
@${MKDIR} ${PREFIX}/include/xg
|
||||
${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include/xg
|
||||
@${MKDIR} ${PREFIX}/share/examples/xg
|
||||
${INSTALL_DATA} ${WRKSRC}/testsrc/*.c ${PREFIX}/share/examples/xg
|
||||
${INSTALL_DATA} ${WRKSRC}/testsrc/*.xpm ${PREFIX}/share/examples/xg
|
||||
${INSTALL_DATA} ${WRKSRC}/testsrc/makefile ${PREFIX}/share/examples/xg/Makefile
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${PREFIX}/share/doc/xg
|
||||
${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/doc/xg
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xg
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,3 +0,0 @@
|
||||
MD5 (xg.tar.gz) = c9b8045a2840ad1d317968b2e389836a
|
||||
SHA256 (xg.tar.gz) = 7259174ffc93dee03517c48a0ff18e6a12b860f6379ef638b11dd98f2d5c647e
|
||||
SIZE (xg.tar.gz) = 125321
|
@ -1,22 +0,0 @@
|
||||
--- makefile.orig Sat Mar 15 09:36:20 1997
|
||||
+++ makefile Sun Nov 12 22:18:51 2000
|
||||
@@ -51,8 +51,8 @@
|
||||
# most systems don't need to do this, ie:. -I/usr/dt/include for
|
||||
# Solaris
|
||||
#
|
||||
-MOTIF_INC =
|
||||
-CFLAGS = "-DUSE_XM_MWMUTIL_H -DUSE_XGPM -I../include ${MOTIF_INC}"
|
||||
+MOTIF_INC = -I${LOCALBASE}/include -I${LOCALBASE}/include/X11
|
||||
+CFLAGS += -DUSE_XM_MWMUTIL_H -DUSE_XGPM -DV_USE_TM_ZONE -I../include ${MOTIF_INC}
|
||||
|
||||
#
|
||||
# If your OS doesn't use ranlib set RANLIB to true
|
||||
@@ -76,7 +76,7 @@
|
||||
|
||||
library:
|
||||
@(cd src; \
|
||||
- CFLAGS=${CFLAGS} ARFLAGS=${ARFLAGS} RANLIB=${RANLIB} make all)
|
||||
+ CFLAGS="${CFLAGS}" ARFLAGS="${ARFLAGS}" RANLIB="${RANLIB}" ${MAKE} all)
|
||||
|
||||
tests: library
|
||||
@(cd testsrc; \
|
@ -1,22 +0,0 @@
|
||||
--- src/TimeEntry.c Fri Mar 14 21:50:04 1997
|
||||
+++ /home/andy/tmp/wrk/src/TimeEntry.c Wed Dec 2 22:29:36 1998
|
||||
@@ -1549,7 +1549,9 @@
|
||||
{
|
||||
struct tm ts;
|
||||
long time_value;
|
||||
+#ifndef __FreeBSD__
|
||||
extern long timezone;
|
||||
+#endif
|
||||
|
||||
ts.tm_mon = te->timeentry.month_value - 1;
|
||||
ts.tm_mday = te->timeentry.day_value;
|
||||
@@ -1574,7 +1576,9 @@
|
||||
*/
|
||||
if ( te->timeentry.use_timezone == False )
|
||||
{
|
||||
+#ifndef __FreeBSD__
|
||||
time_value -= timezone;
|
||||
+#endif
|
||||
|
||||
/*
|
||||
* Adjust for Daylight Savings Time
|
@ -1,12 +0,0 @@
|
||||
--- testsrc/makefile Fri Mar 14 22:50:16 1997
|
||||
+++ /home/andy/tmp/wrk/testsrc/makefile Wed Dec 2 23:05:06 1998
|
||||
@@ -43,6 +43,9 @@
|
||||
testrow.c testtb.c testte.c testtabs.c
|
||||
TESTPROGS = ${TESTCSRC:.c=}
|
||||
|
||||
+CFLAGS = -I/usr/X11R6/include/xg -I/usr/X11R6/include
|
||||
+LDFLAGS = -L/usr/X11R6/lib -lXm -lXt -lXmu -lX11 -lxg
|
||||
+
|
||||
# ------------------------------------------------------------------------
|
||||
# miscellaneous macros
|
||||
#
|
@ -1,10 +0,0 @@
|
||||
In the many years that I have been developing GUIs for UNIX, I have
|
||||
always envied the controls that are commonly available for MS Windows
|
||||
applications. In attempt to rectify this situation I designed the
|
||||
"Xg Widget Set". This widget set is an extension of the Motif widget
|
||||
set and provides many of the controls found in MS Windows applications.
|
||||
|
||||
The widget set is self contained, as such it requires no additional
|
||||
libraries other than X, Xt, and Motif (1.1, 1.2.x or 2.0).
|
||||
|
||||
WWW: http://www.messners.com/xgwidgets/xgwidgets.html
|
@ -1,45 +0,0 @@
|
||||
include/xg/ClockLabel.h
|
||||
include/xg/ClockLabelP.h
|
||||
include/xg/ComboBox.h
|
||||
include/xg/ComboBoxP.h
|
||||
include/xg/ExtPushB.h
|
||||
include/xg/ExtPushBP.h
|
||||
include/xg/FastLabel.h
|
||||
include/xg/FastLabelP.h
|
||||
include/xg/NumEntry.h
|
||||
include/xg/NumEntryP.h
|
||||
include/xg/Row.h
|
||||
include/xg/RowP.h
|
||||
include/xg/Tabs.h
|
||||
include/xg/TabsP.h
|
||||
include/xg/TimeEntry.h
|
||||
include/xg/TimeEntryP.h
|
||||
include/xg/ToolBar.h
|
||||
include/xg/ToolBarP.h
|
||||
include/xg/ToolPushB.h
|
||||
include/xg/ToolPushBP.h
|
||||
include/xg/XgUtils.h
|
||||
include/xg/x_rotate.h
|
||||
include/xg/xgpm.h
|
||||
lib/libxg.a
|
||||
%%PORTDOCS%%share/doc/xg/LICENSE
|
||||
%%PORTDOCS%%share/doc/xg/README
|
||||
share/examples/xg/CancelPB.xpm
|
||||
share/examples/xg/HandSign.xpm
|
||||
share/examples/xg/HelpPB.xpm
|
||||
share/examples/xg/Makefile
|
||||
share/examples/xg/NoPB.xpm
|
||||
share/examples/xg/OkayPB.xpm
|
||||
share/examples/xg/YesPB.xpm
|
||||
share/examples/xg/testcb.c
|
||||
share/examples/xg/testcl.c
|
||||
share/examples/xg/testepb.c
|
||||
share/examples/xg/testfl.c
|
||||
share/examples/xg/testne.c
|
||||
share/examples/xg/testrow.c
|
||||
share/examples/xg/testtabs.c
|
||||
share/examples/xg/testtb.c
|
||||
share/examples/xg/testte.c
|
||||
@dirrm include/xg
|
||||
%%PORTDOCS%%@dirrm share/doc/xg
|
||||
@dirrm share/examples/xg
|
Loading…
Reference in New Issue
Block a user