head	1.13;
access;
symbols;
locks; strict;
comment	@# @;


1.13
date	2005.03.07.06.12.44;	author spike;	state Exp;
branches;
next	1.12;

1.12
date	2005.02.14.15.49.17;	author spike;	state Exp;
branches;
next	1.11;

1.11
date	2005.01.28.13.37.53;	author spike;	state Exp;
branches;
next	1.10;

1.10
date	2005.01.25.08.08.53;	author spike;	state Exp;
branches;
next	1.9;

1.9
date	2005.01.25.08.05.46;	author spike;	state Exp;
branches;
next	1.8;

1.8
date	2005.01.17.18.05.57;	author spike;	state Exp;
branches;
next	1.7;

1.7
date	2005.01.17.18.02.24;	author spike;	state Exp;
branches;
next	1.6;

1.6
date	2005.01.17.17.52.22;	author spike;	state Exp;
branches;
next	1.5;

1.5
date	2005.01.17.17.51.20;	author spike;	state Exp;
branches;
next	1.4;

1.4
date	2005.01.17.17.46.09;	author spike;	state Exp;
branches;
next	1.3;

1.3
date	2005.01.16.18.05.40;	author spike;	state Exp;
branches;
next	1.2;

1.2
date	2005.01.16.18.05.03;	author spike;	state Exp;
branches;
next	1.1;

1.1
date	2005.01.16.12.34.19;	author spike;	state Exp;
branches;
next	;


desc
@@


1.13
log
@edited.
@
text
@#!/usr/bin/make -f

#    Copyright (C) 2005 Spike^ekipS <spikeekips@@gmail.com>
#
#    http://vee.kldp.net
#
#       This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program 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 General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program; if not, write to the Free Software
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

configure: configure-stamp
configure-stamp:
	dh_testdir

build: build-stamp

build-stamp: configure-stamp 
	dh_testdir
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs

	python setup.py install --prefix=/usr --fakeroot=$(CURDIR)/debian/vee;

	# make symbolic link forcely.
	( \
		cd $(CURDIR)/debian/vee/usr/bin; \
		rm -f veet &>/dev/null; \
		ln -s /usr/lib/python2.3/site-packages/vee/veet.py veet; \
	)

# 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 
	dh_installdocs
	dh_installexamples
	dh_installman
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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


1.12
log
@- fix copyright terms correctly, the terms does not have (C) tags.
@
text
@a23 3
	# Add here commands to configure the package.

	#touch configure-stamp
a28 2

	# Add here commands to compile the package.
a34 1

a42 1
	# Add here commands to install the package into debian/vee.
a62 10
#	dh_install
#	dh_installmenu
#	dh_installdebconf	
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_installinit
#	dh_installcron
#	dh_installinfo
a67 3
#	dh_perl
#	dh_python
#	dh_makeshlibs
@


1.11
log
@- add the copyright text in every source and script and text, which
  was required by Savannah(Zeus)
@
text
@d3 1
a3 1
#    Copyright 2005 Spike^ekipS <spikeekips@@gmail.com>
@


1.10
log
@- fix packaging error.
@
text
@d3 18
@


1.9
log
@- change rules file for vee.in.
@
text
@a36 1
		rm -f vee &>/dev/null; \
@


1.8
log
@- fix debian rules file bug.
@
text
@a38 1
		ln -s /usr/lib/python2.3/site-packages/vee/vee.py vee; \
@


1.7
log
@- fix packaging bug.
@
text
@d37 2
a38 2
		[ -f "vee" ] && rm -f vee; \
		[ -f "veet" ] && rm -f veet; \
d40 1
a40 1
		ln -s /usr/lib/python2.3/site-packages/vee/veet.py veet \
@


1.6
log
@- fix dpgk-buildpackage error.
@
text
@d39 2
a40 2
		ln -s ../lib/python2.3/site-packages/vee/vee.py vee; \
		ln -s ../lib/python2.3/site-packages/vee/veet.py veet \
@


1.5
log
@- fixed buildpackage error.
@
text
@a22 1
	# Add here commands to clean up after the build process.
@


1.4
log
@- fixed for po files.
@
text
@d40 2
a41 2
		ln -s /usr/lib/python2.3/site-packages/vee/vee.py vee; \
		ln -s /usr/lib/python2.3/site-packages/vee/veet.py veet \
@


1.3
log
@- fixed.
@
text
@d40 2
a41 2
		ln -s ../lib/python2.3/site-packages/vee/vee.py vee; \
		ln -s ../lib/python2.3/site-packages/vee/veet.py veet \
@


1.2
log
@- fix bug that could not be correctly packaged.
@
text
@d39 1
a39 1
		[ -f "veet" ] && rm -f vee; \
@


1.1
log
@- files for packaging debian package.
@
text
@d38 2
@

