diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2003-03-18 05:23:54 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2003-03-18 05:23:54 +0000 |
commit | 7d472e6d48af2c008c8f280757b8aaa62ec5b0a5 (patch) | |
tree | 64f566ae190511538aa72ed27c3e7e6587f4507f /dev-db/pgaccess/files | |
parent | installs to running kernel, instead of /usr/src/linux symlink'd kernel (diff) | |
download | gentoo-2-7d472e6d48af2c008c8f280757b8aaa62ec5b0a5.tar.gz gentoo-2-7d472e6d48af2c008c8f280757b8aaa62ec5b0a5.tar.bz2 gentoo-2-7d472e6d48af2c008c8f280757b8aaa62ec5b0a5.zip |
Initial import. #17668
Diffstat (limited to 'dev-db/pgaccess/files')
-rw-r--r-- | dev-db/pgaccess/files/digest-pgaccess-0.98.8 | 1 | ||||
-rw-r--r-- | dev-db/pgaccess/files/pgaccess-0.98.8.patch | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-db/pgaccess/files/digest-pgaccess-0.98.8 b/dev-db/pgaccess/files/digest-pgaccess-0.98.8 new file mode 100644 index 000000000000..fbb9fbd83c0f --- /dev/null +++ b/dev-db/pgaccess/files/digest-pgaccess-0.98.8 @@ -0,0 +1 @@ +MD5 5f24281f206369d6bc9623a11ec325ab pgaccess-0.98.8.tar.gz 862387 diff --git a/dev-db/pgaccess/files/pgaccess-0.98.8.patch b/dev-db/pgaccess/files/pgaccess-0.98.8.patch new file mode 100644 index 000000000000..f3ebcedebd3d --- /dev/null +++ b/dev-db/pgaccess/files/pgaccess-0.98.8.patch @@ -0,0 +1,37 @@ +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 + |