Browse Source

Import Debian version 3-1

David Martínez Moreno 19 years ago
parent
commit
d8ed4bfbfe
6 changed files with 93 additions and 1 deletions
  1. 1 1
      Makefile
  2. 2 0
      debian/aoetools.docs
  3. 1 0
      debian/compat
  4. 25 0
      debian/control
  5. 27 0
      debian/copyright
  6. 37 0
      debian/rules

+ 1 - 1
Makefile

@@ -25,7 +25,7 @@ MANDIR = ${PREFIX}/usr/share/man
 # these scripts are created from the *.in files
 CONF_SCRIPTS = aoe-discover aoe-interfaces
 PROGS = aoeping
-COMMANDS := ${CONF_SCRIPTS} aoe-mkdevs aoe-mkshelf aoe-stat ${PROG}
+COMMANDS := ${CONF_SCRIPTS} aoe-mkdevs aoe-mkshelf aoe-stat ${PROGS}
 CFLAGS = -Wall -O -g
 
 AOE_PING_OBJ = aoeping.o linux.o

+ 2 - 0
debian/aoetools.docs

@@ -0,0 +1,2 @@
+NEWS
+README

+ 1 - 0
debian/compat

@@ -0,0 +1 @@
+4

+ 25 - 0
debian/control

@@ -0,0 +1,25 @@
+Source: aoetools
+Section: admin
+Priority: optional
+Maintainer: David Martínez Moreno <ender@debian.org>
+Standards-Version: 3.6.1
+Build-Depends: debhelper (>= 4.2.28)
+
+Package: aoetools
+Architecture: any
+Section: admin
+Priority: optional
+Depends: ${shlibs:Depends}
+Description: tools to assist in using ATA over Ethernet
+ The aoetools are programs that assist in using ATA over Ethernet.  For
+ now, the tools are designed to work with the "aoe" driver for Linux
+ 2.6 kernels.  Support for 2.4 kernels and other operating systems
+ would be helpful, but we're starting with 2.6 support.
+ .
+ There are several tools included in this package:
+  * aoe-discover   - trigger discovery of ATA over Ethernet devices
+  * aoe-interfaces - restrict network interfaces used for AoE
+  * aoe-mkdevs     - create character and block device files
+  * aoe-mkshelf    - create block device files for one shelf address
+  * aoe-stat       - print status information for AoE devices
+  * aoeping        - simple userland communication with AoE devices

+ 27 - 0
debian/copyright

@@ -0,0 +1,27 @@
+This package was firstly debianized by David Martínez Moreno <ender@debian.org> on
+Sat, 23 Apr 2005 03:39:56 +0200.
+
+It was downloaded from http://aoetools.sf.net/
+
+Upstream Author: Ed L Cashin <ecashin@coraid.com>
+
+Copyright: (C) 2005 by Ed Cashin
+
+License:
+
+   This package 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; version 2 dated June, 1991.
+
+   This package 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 package; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.

+ 37 - 0
debian/rules

@@ -0,0 +1,37 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+# export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+	$(MAKE)
+	touch build-stamp
+
+binary-arch: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdocs
+	dh_installchangelogs
+	$(MAKE) install PREFIX=debian/aoetools
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-indep:
+	# do nothing
+
+binary: binary-arch binary-indep
+
+clean:
+	dh_testdir
+	dh_testroot
+	$(MAKE) clean
+	rm -f *-stamp
+	dh_clean