public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/ed/files: ed-1.0-build.patch
@ 2008-09-03 14:42 Doug Goldstein (cardoe)
  0 siblings, 0 replies; 4+ messages in thread
From: Doug Goldstein (cardoe) @ 2008-09-03 14:42 UTC (permalink / raw
  To: gentoo-commits

cardoe      08/09/03 14:42:07

  Added:                ed-1.0-build.patch
  Log:
  forgot to commit and use the new patch
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r8 x86_64)

Revision  Changes    Path
1.1                  sys-apps/ed/files/ed-1.0-build.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.1&content-type=text/plain

Index: ed-1.0-build.patch
===================================================================
2008-09-03  Doug Goldstein  <cardoe@gentoo.org>
	* Make red man page a symlink instead of a hard link
	* install man pages by default

2007-04-16  Mike Frysinger  <vapier@gentoo.org>

	* Clean locale vars from environment to maintain a sane state.
	* Do not set CC/CXX/CPPFLAGS/LDFLAGS to "" so that user can
	  override if they so choose.
	* Only set CFLAGS/CXXFLAGS if user did not specify any.

diff -u ed-1.0/configure ed-1.0-new-patch/configure
--- ed-1.0/configure	2008-08-21 14:34:24.000000000 -0400
+++ ed-1.0-new-patch/configure	2008-09-03 10:33:16.000000000 -0400
@@ -14,6 +14,19 @@
 progversion=1.0
 srctrigger=ed.h
 
+# NLS nuisances.
+for as_var in \
+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
+  LC_TELEPHONE LC_TIME
+do
+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
+    eval $as_var=C; export $as_var
+  else
+    unset $as_var
+  fi
+done
+
 # clear some things potentially inherited from environment.
 srcdir=
 prefix=/usr/local
@@ -24,12 +37,6 @@
 mandir='$(datadir)/man'
 sysconfdir='$(prefix)/etc'
 program_prefix=
-CC=
-CXX=
-CPPFLAGS=
-CFLAGS='-Wall -W -O2'
-CXXFLAGS='-Wall -W -O2'
-LDFLAGS=
 
 # Loop over all args
 while [ x"$1" != x ] ; do
@@ -106,6 +113,14 @@
 	esac
 done
 
+# Defaults if the user did not select any
+if [ x"${CFLAGS}" = x ] ; then
+	CFLAGS='-Wall -W -O2'
+fi
+if [ x"${CXXFLAGS}" = x ] ; then
+	CXXFLAGS='-Wall -W -O2'
+fi
+
 # Find the source files, if location was not specified.
 srcdirtext=
 if [ x"${srcdir}" = x ] ; then
Common subdirectories: ed-1.0/doc and ed-1.0-new-patch/doc
diff -u ed-1.0/Makefile.in ed-1.0-new-patch/Makefile.in
--- ed-1.0/Makefile.in	2008-05-04 11:57:10.000000000 -0400
+++ ed-1.0-new-patch/Makefile.in	2008-09-03 10:38:37.000000000 -0400
@@ -44,11 +44,11 @@
 check : $(progname) $(VPATH)/testsuite/check.sh
 	@$(VPATH)/testsuite/check.sh $(VPATH)/testsuite
 
-install : all install-info
+install : all install-info install-man
 	if test ! -d $(DESTDIR)$(bindir) ; then $(INSTALL) -d $(DESTDIR)$(bindir) ; fi
 	$(INSTALL_PROGRAM) ./$(progname) $(DESTDIR)$(bindir)/$(program_prefix)$(progname)
 	-rm -f $(DESTDIR)$(bindir)/$(program_prefix)r$(progname)
-	cd $(DESTDIR)$(bindir) ; ln $(program_prefix)$(progname) $(program_prefix)r$(progname)
+	cd $(DESTDIR)$(bindir) ; ln -s $(program_prefix)$(progname) $(program_prefix)r$(progname)
 
 install-info :
 	if test ! -d $(DESTDIR)$(infodir) ; then $(INSTALL) -d $(DESTDIR)$(infodir) ; fi
@@ -59,7 +59,7 @@
 	if test ! -d $(DESTDIR)$(mandir)/man1 ; then $(INSTALL) -d $(DESTDIR)$(mandir)/man1 ; fi
 	$(INSTALL_DATA) $(VPATH)/doc/$(progname).1 $(DESTDIR)$(mandir)/man1/$(program_prefix)$(progname).1
 	-rm -f $(DESTDIR)$(mandir)/man1/$(program_prefix)r$(progname).1
-	cd $(DESTDIR)$(mandir)/man1 ; ln $(program_prefix)$(progname).1 $(program_prefix)r$(progname).1
+	cd $(DESTDIR)$(mandir)/man1 ; ln -s $(program_prefix)$(progname).1 $(program_prefix)r$(progname).1
 
 install-strip : all
 	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
Common subdirectories: ed-1.0/testsuite and ed-1.0-new-patch/testsuite






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-apps/ed/files: ed-1.0-build.patch
@ 2008-12-31  9:16 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2008-12-31  9:16 UTC (permalink / raw
  To: gentoo-commits

vapier      08/12/31 09:16:52

  Modified:             ed-1.0-build.patch
  Log:
  touchup
  (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)

Revision  Changes    Path
1.2                  sys-apps/ed/files/ed-1.0-build.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?r1=1.1&r2=1.2

Index: ed-1.0-build.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ed-1.0-build.patch	3 Sep 2008 14:42:07 -0000	1.1
+++ ed-1.0-build.patch	31 Dec 2008 09:16:52 -0000	1.2
@@ -9,9 +9,8 @@
 	  override if they so choose.
 	* Only set CFLAGS/CXXFLAGS if user did not specify any.
 
-diff -u ed-1.0/configure ed-1.0-new-patch/configure
---- ed-1.0/configure	2008-08-21 14:34:24.000000000 -0400
-+++ ed-1.0-new-patch/configure	2008-09-03 10:33:16.000000000 -0400
+--- ed-1.0/configure
++++ ed-1.0/configure
 @@ -14,6 +14,19 @@
  progversion=1.0
  srctrigger=ed.h
@@ -50,20 +49,18 @@
  done
  
 +# Defaults if the user did not select any
-+if [ x"${CFLAGS}" = x ] ; then
++if [ x"${CFLAGS+set}" != xset ] ; then
 +	CFLAGS='-Wall -W -O2'
 +fi
-+if [ x"${CXXFLAGS}" = x ] ; then
++if [ x"${CXXFLAGS+set}" = xset ] ; then
 +	CXXFLAGS='-Wall -W -O2'
 +fi
 +
  # Find the source files, if location was not specified.
  srcdirtext=
  if [ x"${srcdir}" = x ] ; then
-Common subdirectories: ed-1.0/doc and ed-1.0-new-patch/doc
-diff -u ed-1.0/Makefile.in ed-1.0-new-patch/Makefile.in
---- ed-1.0/Makefile.in	2008-05-04 11:57:10.000000000 -0400
-+++ ed-1.0-new-patch/Makefile.in	2008-09-03 10:38:37.000000000 -0400
+--- ed-1.0/Makefile.in
++++ ed-1.0/Makefile.in
 @@ -44,11 +44,11 @@
  check : $(progname) $(VPATH)/testsuite/check.sh
  	@$(VPATH)/testsuite/check.sh $(VPATH)/testsuite
@@ -87,4 +84,3 @@
  
  install-strip : all
  	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
-Common subdirectories: ed-1.0/testsuite and ed-1.0-new-patch/testsuite






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-apps/ed/files: ed-1.0-build.patch
@ 2008-12-31  9:38 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2008-12-31  9:38 UTC (permalink / raw
  To: gentoo-commits

vapier      08/12/31 09:38:18

  Modified:             ed-1.0-build.patch
  Log:
  fix typo

Revision  Changes    Path
1.3                  sys-apps/ed/files/ed-1.0-build.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?r1=1.2&r2=1.3

Index: ed-1.0-build.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ed-1.0-build.patch	31 Dec 2008 09:16:52 -0000	1.2
+++ ed-1.0-build.patch	31 Dec 2008 09:38:18 -0000	1.3
@@ -52,7 +52,7 @@
 +if [ x"${CFLAGS+set}" != xset ] ; then
 +	CFLAGS='-Wall -W -O2'
 +fi
-+if [ x"${CXXFLAGS+set}" = xset ] ; then
++if [ x"${CXXFLAGS+set}" != xset ] ; then
 +	CXXFLAGS='-Wall -W -O2'
 +fi
 +






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-apps/ed/files: ed-1.0-build.patch
@ 2008-12-31 11:46 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2008-12-31 11:46 UTC (permalink / raw
  To: gentoo-commits

vapier      08/12/31 11:46:58

  Modified:             ed-1.0-build.patch
  Log:
  add upstream URLs
  (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)

Revision  Changes    Path
1.4                  sys-apps/ed/files/ed-1.0-build.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch?r1=1.3&r2=1.4

Index: ed-1.0-build.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/ed/files/ed-1.0-build.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ed-1.0-build.patch	31 Dec 2008 09:38:18 -0000	1.3
+++ ed-1.0-build.patch	31 Dec 2008 11:46:58 -0000	1.4
@@ -1,7 +1,11 @@
+http://lists.gnu.org/archive/html/bug-ed/2008-12/msg00002.html
+
 2008-09-03  Doug Goldstein  <cardoe@gentoo.org>
 	* Make red man page a symlink instead of a hard link
 	* install man pages by default
 
+http://lists.gnu.org/archive/html/bug-ed/2008-12/msg00001.html
+
 2007-04-16  Mike Frysinger  <vapier@gentoo.org>
 
 	* Clean locale vars from environment to maintain a sane state.






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-12-31 11:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-31 11:46 [gentoo-commits] gentoo-x86 commit in sys-apps/ed/files: ed-1.0-build.patch Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2008-12-31  9:38 Mike Frysinger (vapier)
2008-12-31  9:16 Mike Frysinger (vapier)
2008-09-03 14:42 Doug Goldstein (cardoe)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox