Update of /cvsroot/plplot/plplot/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32105/scripts
Modified Files:
CMakeLists.txt
Log Message:
Install scripts in scripts directory with CBS.
Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/plplot/plplot/scripts/CMakeLists.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CMakeLists.txt 6 Jul 2006 18:34:55 -0000 1.1
+++ CMakeLists.txt 6 Aug 2006 14:13:09 -0000 1.2
@@ -1,53 +1,28 @@
-
-########### install files ###############
-
-INSTALL_FILES( FILES plplot-config )
-INSTALL_FILES( FILES plm2gif plpr pstex2eps )
-
-
-
-#original Makefile.am contents follow:
-
-## scripts/Makefile.am for PLplot
-####
-#### Process this file with automake to produce Makefile.in
-####
-## Copyright (C) 2002 Alan W. Irwin
-## Copyright (C) 2004 Rafael Laboissiere
-##
-## This file is part of PLplot.
-##
-## PLplot is free software; you can redistribute it and/or modify
-## it under the terms of the GNU Library General Public License as published
-## by the Free Software Foundation; version 2 of the License.
-##
-## PLplot is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU Library General Public License for more details.
-##
-## You should have received a copy of the GNU Library General Public License
-## along with the file PLplot; if not, write to the Free Software
-## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+# scripts/CMakeLists.txt for PLplot
+###
+### Process this file with cmake to produce Makefile
+###
+# Copyright (C) 2006 Alan W. Irwin
#
-#examplesdir = $(DATA_DIR)/examples
+# This file is part of PLplot.
#
-#dist_bin_SCRIPTS = \
-# plm2gif \
-# plpr \
-# pstex2eps
-#nodist_bin_SCRIPTS = plplot-config
+# PLplot is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Library General Public License as published
+# by the Free Software Foundation; version 2 of the License.
#
-#### FIXME: Brute force inclusion in dist tarball. The files below may
-#### be treated in a different way for installation [RL, 2003-03-06]
-#EXTRA_DIST = \
-# check-tarball-cvs.sh \
-# check-year-author.pl \
-# fixfort \
-# get-dependency-libs.sh \
-# htdocs-gen_plot-examples.sh \
-# htdocs-replace.sh \
-# make-cvs-tarball.sh \
-# make_tarball.sh \
-# mktclIndex \
-# upload-cvs-tarball.sh
+# PLplot is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public License
+# along with PLplot; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+set(scripts_SCRIPTS
+plm2gif
+plpr
+pstex2eps
+)
+install(PROGRAMS ${scripts_SCRIPTS} DESTINATION ${BIN_DIR})
+
|