diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-08-18 06:21:44 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-08-18 06:21:44 +0000 |
commit | 9e384b865d31771663c66e0114291009adba1f81 (patch) | |
tree | 172d2eab276cd153a7d9a266eea14f8ccddd5331 /dev-db/pgaccess/files | |
parent | correct HOMEPAGE for bug 280745 and quote variables (diff) | |
download | historical-9e384b865d31771663c66e0114291009adba1f81.tar.gz historical-9e384b865d31771663c66e0114291009adba1f81.tar.bz2 historical-9e384b865d31771663c66e0114291009adba1f81.zip |
clean up
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'dev-db/pgaccess/files')
-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 - |