diff options
Diffstat (limited to 'dev-db/pgaccess/files/pgaccess-0.98.8.patch')
-rw-r--r-- | dev-db/pgaccess/files/pgaccess-0.98.8.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-db/pgaccess/files/pgaccess-0.98.8.patch b/dev-db/pgaccess/files/pgaccess-0.98.8.patch deleted file mode 100644 index f3ebcedebd3d..000000000000 --- a/dev-db/pgaccess/files/pgaccess-0.98.8.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff -rc pgaccess-0.98.8/Makefile pgaccess-0.98.8.new/Makefile -*** pgaccess-0.98.8/Makefile Wed Aug 28 18:11:22 2002 ---- pgaccess-0.98.8.new/Makefile Tue Feb 25 08:52:15 2003 -*************** -*** 7,21 **** - # - #------------------------------------------------------------------------- - -! bindir = /usr/bin/X11 -! libdir = /usr/lib/pgaccess -! wish = /usr/bin/wish - - pgaccess: - chmod a+x pgaccess.tcl -! mkdir $(libdir) - cp -R * $(libdir) -! ln -s $(libdir)/pgaccess.tcl $(bindir)/pgaccess - - all: pgaccess - ---- 7,22 ---- - # - #------------------------------------------------------------------------- - -! bindir := $(prefix)/usr/bin/X11 -! libdir := $(prefix)/usr/lib/pgaccess -! wish := `which wish` - - pgaccess: - chmod a+x pgaccess.tcl -! [ -d $(libdir) ] || mkdir -p $(libdir) - cp -R * $(libdir) -! [ -d $(bindir) ] || mkdir -p $(bindir) -! cd $(bindir) && ln -s ../../lib/pgaccess/pgaccess.tcl $(bindir)/pgaccess - - all: pgaccess - |