Update Athena-based program dependencies.
This commit is contained in:
parent
d774e4c87c
commit
d606b71a50
@ -1,5 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
xmkmf -a
|
||||
make
|
||||
make DESTDIR="$1" install
|
@ -1,2 +0,0 @@
|
||||
12dcd5a750a18a56686f125aa28e374af8124c1632f680d1187ed261e8b2ebe4
|
||||
d848d78eb240cbe396b59cbe0d70ef5844eb5f1e5f899baf29f346a83c4d229a
|
@ -1,140 +0,0 @@
|
||||
/* A Bison parser, made by GNU Bison 3.7.6. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
|
||||
Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
||||
|
||||
/* As a special exception, you may create a larger work that contains
|
||||
part or all of the Bison parser skeleton and distribute that work
|
||||
under terms of your choice, so long as that work isn't itself a
|
||||
parser generator using the skeleton or a modified version thereof
|
||||
as a parser skeleton. Alternatively, if you modify or redistribute
|
||||
the parser skeleton itself, you may (at your option) remove this
|
||||
special exception, which will cause the skeleton and the resulting
|
||||
Bison output files to be licensed under the GNU General Public
|
||||
License without this special exception.
|
||||
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
|
||||
especially those whose name start with YY_ or LayYY_. They are
|
||||
private implementation details that can be changed or removed. */
|
||||
|
||||
#ifndef YY_YY_Y_TAB_H_INCLUDED
|
||||
# define YY_YY_Y_TAB_H_INCLUDED
|
||||
/* Debug traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int LayYYdebug;
|
||||
#endif
|
||||
|
||||
/* Token kinds. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
enum LayYYtokentype
|
||||
{
|
||||
YYEMPTY = -2,
|
||||
YYEOF = 0, /* "end of file" */
|
||||
YYerror = 256, /* error */
|
||||
YYUNDEF = 257, /* "invalid token" */
|
||||
OC = 258, /* OC */
|
||||
CC = 259, /* CC */
|
||||
OA = 260, /* OA */
|
||||
CA = 261, /* CA */
|
||||
OP = 262, /* OP */
|
||||
CP = 263, /* CP */
|
||||
NAME = 264, /* NAME */
|
||||
NUMBER = 265, /* NUMBER */
|
||||
INFINITY = 266, /* INFINITY */
|
||||
VERTICAL = 267, /* VERTICAL */
|
||||
HORIZONTAL = 268, /* HORIZONTAL */
|
||||
EQUAL = 269, /* EQUAL */
|
||||
DOLLAR = 270, /* DOLLAR */
|
||||
PLUS = 271, /* PLUS */
|
||||
MINUS = 272, /* MINUS */
|
||||
TIMES = 273, /* TIMES */
|
||||
DIVIDE = 274, /* DIVIDE */
|
||||
PERCENTOF = 275, /* PERCENTOF */
|
||||
PERCENT = 276, /* PERCENT */
|
||||
WIDTH = 277, /* WIDTH */
|
||||
HEIGHT = 278, /* HEIGHT */
|
||||
UMINUS = 279, /* UMINUS */
|
||||
UPLUS = 280 /* UPLUS */
|
||||
};
|
||||
typedef enum LayYYtokentype LayYYtoken_kind_t;
|
||||
#endif
|
||||
/* Token kinds. */
|
||||
#define YYEMPTY -2
|
||||
#define YYEOF 0
|
||||
#define YYerror 256
|
||||
#define YYUNDEF 257
|
||||
#define OC 258
|
||||
#define CC 259
|
||||
#define OA 260
|
||||
#define CA 261
|
||||
#define OP 262
|
||||
#define CP 263
|
||||
#define NAME 264
|
||||
#define NUMBER 265
|
||||
#define INFINITY 266
|
||||
#define VERTICAL 267
|
||||
#define HORIZONTAL 268
|
||||
#define EQUAL 269
|
||||
#define DOLLAR 270
|
||||
#define PLUS 271
|
||||
#define MINUS 272
|
||||
#define TIMES 273
|
||||
#define DIVIDE 274
|
||||
#define PERCENTOF 275
|
||||
#define PERCENT 276
|
||||
#define WIDTH 277
|
||||
#define HEIGHT 278
|
||||
#define UMINUS 279
|
||||
#define UPLUS 280
|
||||
|
||||
/* Value type. */
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
union YYSTYPE
|
||||
{
|
||||
#line 17 "laygram.y"
|
||||
|
||||
int ival;
|
||||
XrmQuark qval;
|
||||
BoxPtr bval;
|
||||
BoxParamsPtr pval;
|
||||
GlueRec gval;
|
||||
LayoutDirection lval;
|
||||
ExprPtr eval;
|
||||
Operator oval;
|
||||
|
||||
#line 128 "y.tab.h"
|
||||
|
||||
};
|
||||
typedef union YYSTYPE YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
#endif
|
||||
|
||||
|
||||
extern YYSTYPE LayYYlval;
|
||||
|
||||
int LayYYparse (void);
|
||||
|
||||
#endif /* !YY_YY_Y_TAB_H_INCLUDED */
|
@ -1,2 +0,0 @@
|
||||
files/laygram.h
|
||||
https://downloads.sourceforge.net/project/xawm/xawm/1.6/XawM-1.6.src.tar.gz
|
@ -1 +0,0 @@
|
||||
0.15.1 1
|
@ -1,12 +0,0 @@
|
||||
prefix=/usr
|
||||
exec_prefix=${prefix}
|
||||
libdir=${exec_prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: Xaw
|
||||
Description: X Athena Widgets Library, version 7
|
||||
Version: 1.0.13
|
||||
Requires: xproto xt
|
||||
Requires.private: x11 xext xt xmu xpm
|
||||
Cflags: -I${includedir}
|
||||
Libs: -L${libdir} -lneXtaw
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
libX11
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
ghostscript
|
||||
freetype-harfbuzz
|
||||
libICE
|
||||
|
@ -1,7 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
./configure \
|
||||
--prefix=/usr
|
||||
|
||||
make
|
||||
make DESTDIR="$1" install
|
@ -1 +0,0 @@
|
||||
8ef8067312571292ccc2bbe94c41109dcf022ea5a4ec71656a83d8cce9edb0cd
|
@ -1,2 +0,0 @@
|
||||
libXmu
|
||||
libXpm
|
@ -1 +0,0 @@
|
||||
https://www.x.org/releases/individual/lib/libXaw-1.0.13.tar.bz2
|
@ -1 +0,0 @@
|
||||
1.0.13 1
|
@ -1,11 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
./autogen.sh \
|
||||
--prefix=/usr
|
||||
|
||||
make
|
||||
make DESTDIR="$1" install
|
||||
|
||||
#ln -s "/usr/include/X11/Xaw3d" "$1/usr/include/X11/Xaw"
|
||||
#ln -s "/usr/lib/pkgconfig/xaw3d.pc" "/usr/lib/pkgconfig/xaw7.pc"
|
||||
#ln -s "/usr/lib/libXaw3d.so" "$1/usr/lib/libXaw7.so"
|
@ -1,12 +0,0 @@
|
||||
autoconf make
|
||||
automake make
|
||||
bison make
|
||||
bison make
|
||||
gettext-tiny make
|
||||
libX11
|
||||
libXext
|
||||
libXmu
|
||||
libXt
|
||||
libtool make
|
||||
pkgconf make
|
||||
xorg-util-macros make
|
@ -1,9 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
for lib in /usr/lib/libXaw.7.so /usr/lib/libXaw.so /usr/lib/libXaw.so.6 /usr/lib/libXaw.so.7 /usr/lib/libXaw6.so /usr/lib/libXaw6.so.6 /usr/lib/libXaw6.so.6.0.0 /usr/lib/libXaw6.so.6.0.0.1 /usr/lib/libXaw7.so /usr/lib/libXaw7.so.7 /usr/lib/libXaw7.so.7.0.0
|
||||
do ln -s /usr/lib/libXaw3d.so $lib
|
||||
done
|
||||
|
||||
ln -s /usr/lib/pkgconfig/xaw3d.pc /usr/lib/pkgconfig/xaw7.pc
|
||||
|
||||
ln -s /usr/include/X11/Xaw3d /usr/include/X11/Xaw
|
@ -1 +0,0 @@
|
||||
git+https://gitlab.freedesktop.org/dickey/libxaw3d.git
|
@ -1 +0,0 @@
|
||||
git 1
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
libICE
|
||||
libSM
|
||||
libX11
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
xorg-util-macros make
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
libX11
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
gccmakedep-git make
|
||||
imake-git make
|
||||
xorg-cf make
|
||||
|
1
ports/xclipboard/depends
Normal file
1
ports/xclipboard/depends
Normal file
@ -0,0 +1 @@
|
||||
neXtaw
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
libICE
|
||||
libSM
|
||||
libX11
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
libXdmcp
|
||||
libXpm
|
||||
xrdb
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
libX11
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
gccmakedep-git make
|
||||
imake-git make
|
||||
xorg-cf make
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
libX11
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
libX11
|
||||
|
@ -1 +1,2 @@
|
||||
neXtaw
|
||||
xbitmaps make
|
||||
|
2
ports/xmore/depends
Normal file
2
ports/xmore/depends
Normal file
@ -0,0 +1,2 @@
|
||||
neXtaw
|
||||
|
1
ports/xrn/depends
Normal file
1
ports/xrn/depends
Normal file
@ -0,0 +1 @@
|
||||
neXtaw
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
autoconf make
|
||||
automake make
|
||||
libICE
|
||||
|
@ -1,3 +1,4 @@
|
||||
neXtaw
|
||||
bzip2
|
||||
expat
|
||||
fontconfig
|
||||
|
@ -1 +1,2 @@
|
||||
libXtst
|
||||
neXtaw
|
||||
|
Loading…
Reference in New Issue
Block a user