[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: ChangeLog
User: werner
Date: 06/08/30 13:27:00
Modified: . ChangeLog Makefile.am configure.ac
Log:
made the examples package to install into the doc directory
Revision Changes Path
1.24 +6 -0 eda/geda/gaf/examples/ChangeLog
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ChangeLog
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/examples/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- ChangeLog 22 Aug 2006 03:01:20 -0000 1.23
+++ ChangeLog 30 Aug 2006 17:27:00 -0000 1.24
@@ -1,3 +1,9 @@
+2006-08-30 Werner Hoch <werner.ho@xxxxxx>
+
+ * configure.ac: fixed installation error. Install into docdir
+
+ * */Makefile.am: changed for the installation
+
2006-08-21 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>
* README: Updated the README a little to be ready for the next
1.7 +5 -1 eda/geda/gaf/examples/Makefile.am
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Makefile.am
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/examples/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- Makefile.am 18 Jan 2004 01:52:33 -0000 1.6
+++ Makefile.am 30 Aug 2006 17:27:00 -0000 1.7
@@ -1,7 +1,11 @@
SUBDIRS = gTAG lightning_detector RF_Amp TwoStageAmp
-EXTRA_DIST = autogen.sh
+exampledir = @GEDADOCDIR@/examples/
+
+example_DATA = README
+
+EXTRA_DIST = autogen.sh $(example_DATA)
distclean-local:
-rm -rf autom4te.cache
1.15 +16 -8 eda/geda/gaf/examples/configure.ac
(In the diff below, changes in quantity of whitespace are not shown.)
Index: configure.ac
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/examples/configure.ac,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- configure.ac 25 Aug 2006 01:00:06 -0000 1.14
+++ configure.ac 30 Aug 2006 17:27:00 -0000 1.15
@@ -1,6 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT
-AC_CONFIG_SRCDIR([gTAG/gTAG.sch])
PACKAGE=geda-examples
VERSION=20060824
@@ -9,15 +8,24 @@
# Initialize automake
AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
-# Initialize maintainer mode
-AM_MAINTAINER_MODE
-HOME=`echo $HOME`
-DATADIR=gEDA
-GEDADATADIR=$datadir/$DATADIR
+# Expand the prefix variable
+# I don't like the way this is done, but it works (I hope).
+if eval "test x$prefix = xNONE"; then
+ dprefix=$ac_default_prefix
+else
+ dprefix=$prefix
+fi
+
+gedadocdir=$dprefix/share/doc/geda-doc
+# --with-docdir : tells where to store documentation if not default
+AC_ARG_WITH(docdir,
+ [ --with-docdir Where to store documentation if not default.],
+ gedadocdir=$withval)
+expandgedadocdir=`echo $gedadocdir`
+GEDADOCDIR=$expandgedadocdir
+AC_SUBST(GEDADOCDIR)
-AC_SUBST(VERSION)
-AC_SUBST(GEDADATADIR)
AC_CONFIG_FILES([
Makefile
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs