[rkward-cvs] rkward/debian changelog,NONE,1.1 compat,NONE,1.1 control,NONE,1.1 copyright,NONE,1.1 dirs,NONE,1.1 docs,NONE,1.1 files,NONE,1.1 rkward.substvars,NONE,1.1 rules,NONE,1.1

Thomas Friedrichsmeier tfry at users.sourceforge.net
Wed Apr 27 20:57:03 UTC 2005


Update of /cvsroot/rkward/rkward/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20649

Added Files:
	changelog compat control copyright dirs docs files 
	rkward.substvars rules 
Log Message:
Adding debian packaging files. There's still a problem with the r.xml file (conflicting with the one provided by kate)

--- NEW FILE: rkward.substvars ---
shlibs:Depends=kdelibs4 (>= 4:3.3.2-4.0.2), libart-2.0-2 (>= 2.3.16), libc6 (>= 2.3.2.ds1-21), libfam0c102, libgcc1 (>= 1:3.4.1-3), libice6 | xlibs (>> 4.1.0), libidn11 (>= 0.5.13), libjpeg62, libpcre3 (>= 4.5), libpng12-0 (>= 1.2.8rel), libqt3c102-mt (>= 3:3.3.4), libsm6 | xlibs (>> 4.1.0), libstdc++5 (>= 1:3.3.4-1), libx11-6 | xlibs (>> 4.1.0), libxext6 | xlibs (>> 4.1.0), libxrender1, zlib1g (>= 1:1.2.1)

--- NEW FILE: dirs ---
usr/bin
usr/sbin

--- NEW FILE: control ---
Source: rkward
Section: unknown
Priority: optional
Maintainer: Thomas Friedrichsmeier <tfry at users.sourceforge.net>
Build-Depends: debhelper (>= 4.0.0), autotools-dev, kdelibs4-dev, r-base-dev (>= 2.0.0), libqt3-mt-dev (>= 3)
Standards-Version: 3.6.1

Package: rkward
Architecture: any
Depends: kdebase (>= 3.0.0), r-base (>= 2.0.0)
Description: A KDE frontend to the R statistics language
 RKWard is meant to become an easy to use, transparent frontend to the R-language, a very powerful, yet hard-to-get-into scripting-language with a strong focus on statistic functions. It will not only provide a convenient user-interface, however, but also take care of seamless integration with an office-suite. Practical statistics is not just about calculating, after all, but also about documenting and ultimately publishing the results.
 RKWard is still in early development status.
--- NEW FILE: copyright ---
This package was debianized by Thomas Friedrichsmeier <tfry at users.sourceforge.net> on
Tue, 26 Apr 2005 00:00:33 +0200.

It was downloaded from http://rkward.sourceforge.net

Copyright Holder: Thomas Friedrichsmeier and the RKWard team

License:
You are free to distribute this software under the terms of the GNU General Public License.
On Debian systems, the complete text of the GNU General Public License can be found in the file `/usr/share/common-licenses/GPL'.
--- NEW FILE: changelog ---
rkward (0.3.2-1) unstable; urgency=low

  * Initial Release.
  * No changes against upstream version.

 -- Thomas Friedrichsmeier <tfry at users.sourceforge.net>  Tue, 26 Apr 2005 00:00:33 +0200


--- NEW FILE: rules ---
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1


# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)


CFLAGS = -Wall -g

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif

config.status: configure
	dh_testdir
	# Add here commands to configure the package.
	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-extra-libs=/usr/lib/R/lib/ --with-extra-includes=/usr/lib/R/include


build: build-stamp

build-stamp:  config.status
	dh_testdir

	# Add here commands to compile the package.
	$(MAKE)
	#docbook-to-man debian/rkward.sgml > rkward.1

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp 

	# Add here commands to clean up after the build process.
	-$(MAKE) distclean
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
	cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
	cp -f /usr/share/misc/config.guess config.guess
endif


	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs

	# Add here commands to install the package into debian/rkward.
	$(MAKE) install DESTDIR=$(CURDIR)/debian/rkward


# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs ChangeLog
	dh_installdocs
	dh_installexamples
#	dh_install
#	dh_installmenu
#	dh_installdebconf	
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_installinit
#	dh_installcron
#	dh_installinfo
	dh_installman
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
#	dh_perl
#	dh_python
#	dh_makeshlibs
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install 

--- NEW FILE: docs ---
README
TODO

--- NEW FILE: compat ---
4

--- NEW FILE: files ---
rkward_0.3.2-1_i386.deb unknown optional





More information about the rkward-tracker mailing list