aboutsummaryrefslogtreecommitdiffstats
path: root/devel/automake18/files
diff options
context:
space:
mode:
authoralane <alane@FreeBSD.org>2002-11-03 20:14:42 +0800
committeralane <alane@FreeBSD.org>2002-11-03 20:14:42 +0800
commit9280a9a67572fbf9b94035832dd2d537e52b55a7 (patch)
tree4fdd803ebc83f5b11ad0c09c9efb060c5f7d7749 /devel/automake18/files
parente8fb49f3de78aec172552dc4e11f5e934e016c15 (diff)
downloadfreebsd-ports-gnome-9280a9a67572fbf9b94035832dd2d537e52b55a7.tar.gz
freebsd-ports-gnome-9280a9a67572fbf9b94035832dd2d537e52b55a7.tar.zst
freebsd-ports-gnome-9280a9a67572fbf9b94035832dd2d537e52b55a7.zip
1. Update version to 1.7.1.
2. Rewrote pkg-comment and pkg-descr files. 3. Marked pkg-plist file as not done. 4. Made do-build and do-install targets indicating that this port is not at all ready to even be looked at. The repocopy was a placeholder for when I can get to it.
Diffstat (limited to 'devel/automake18/files')
-rw-r--r--devel/automake18/files/patch-Makefile.in11
-rw-r--r--devel/automake18/files/patch-aclocal.in48
-rw-r--r--devel/automake18/files/patch-automake.texi25
3 files changed, 0 insertions, 84 deletions
diff --git a/devel/automake18/files/patch-Makefile.in b/devel/automake18/files/patch-Makefile.in
deleted file mode 100644
index 5f1a7a86a4c2..000000000000
--- a/devel/automake18/files/patch-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Sun Sep 9 11:42:15 2001
-+++ Makefile.in Sun Sep 9 11:42:51 2001
-@@ -180,7 +180,7 @@
- .texi.info:
- @cd $(srcdir) && rm -f $@ $@-[0-9] $@-[0-9][0-9]
- cd $(srcdir) \
-- && $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) \
-+ && $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --no-split \
- `echo $< | sed 's,.*/,,'`
-
- .texi.dvi:
diff --git a/devel/automake18/files/patch-aclocal.in b/devel/automake18/files/patch-aclocal.in
deleted file mode 100644
index 3cd773443ae7..000000000000
--- a/devel/automake18/files/patch-aclocal.in
+++ /dev/null
@@ -1,48 +0,0 @@
---- aclocal.in.orig Sun Sep 9 11:31:39 2001
-+++ aclocal.in Sun Sep 9 11:37:54 2001
-@@ -34,6 +34,8 @@
- # Note that this isn't pkgdatadir, but a separate directory.
- $acdir = "@datadir@/aclocal";
-
-+$acdir_x11 = '%%X11BASE%%/share/aclocal';
-+
- # Some globals.
-
- # Exit status.
-@@ -115,6 +117,9 @@
-
-
- local (@dirlist) = &parse_arguments (@ARGV);
-+
-+unshift @dirlist, $acdir_x11 if -d "$acdir_x11/.";
-+
- &scan_m4_files (@dirlist);
- &scan_configure;
- if (! $exit_status)
-@@ -299,11 +304,13 @@
- $file_contents{'acinclude.m4'} = &scan_file ('acinclude.m4');
- }
-
-+ local (@skipinolist) = ();
- local ($m4dir);
- foreach $m4dir (@dirlist)
- {
- opendir (DIR, $m4dir)
- || die "aclocal: couldn't open directory `$m4dir': $!\n";
-+ local ($file, $fullfile, $expr);
- local ($file, $fullfile);
- foreach $file (sort grep (! /^\./, readdir (DIR)))
- {
-@@ -314,6 +321,12 @@
- next if $file eq 'aclocal.m4';
-
- $fullfile = $m4dir . '/' . $file;
-+
-+ # Do not scan a file more than once.
-+ $ino = (stat($fullfile))[1];
-+ next if grep($ino eq $_, @skipinolist);
-+ push @skipinolist, $ino;
-+
- $file_contents{$fullfile} = &scan_file ($fullfile);
- }
- closedir (DIR);
diff --git a/devel/automake18/files/patch-automake.texi b/devel/automake18/files/patch-automake.texi
deleted file mode 100644
index a63884c48187..000000000000
--- a/devel/automake18/files/patch-automake.texi
+++ /dev/null
@@ -1,25 +0,0 @@
---- automake.texi.orig Sat Apr 4 04:04:07 1998
-+++ automake.texi Wed Sep 23 23:34:15 1998
-@@ -1,6 +1,7 @@
- \input texinfo @c -*-texinfo-*-
- @c %**start of header
- @setfilename automake.info
-+@dircategory Programming & development tools
- @settitle automake
- @setchapternewpage off
- @c %**end of header
-@@ -9,12 +10,12 @@
-
- @dircategory GNU admin
- @direntry
--* automake: (automake). Making Makefile.in's
-+* Automake: (automake). Making Makefile.in's
- @end direntry
-
- @dircategory Individual utilities
- @direntry
--* aclocal: (automake)Invoking aclocal. Generating aclocal.m4
-+* Aclocal: (automake) Invoking aclocal. Generating aclocal.m4
- @end direntry
-
- @ifinfo