diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/README | 6 | ||||
-rwxr-xr-x | debian/autogen.sh | 11 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 16 | ||||
-rw-r--r-- | debian/copyright | 36 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rw-r--r-- | debian/lintian | 2 | ||||
-rwxr-xr-x | debian/rules | 105 | ||||
-rw-r--r-- | debian/vyos-nhrp.debhelper.log | 13 | ||||
-rw-r--r-- | debian/vyos-nhrp.substvars | 1 |
11 files changed, 199 insertions, 0 deletions
diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..ea2c801 --- /dev/null +++ b/debian/README @@ -0,0 +1,6 @@ +The Debian Package vyos-nhrp +------------------------------- + +This package is VyOS vyos-nhrp. + + -- Kim Hagen <khagen@multi-development.com> Fri, 08 Aug 2014 13:50:54 +0200 diff --git a/debian/autogen.sh b/debian/autogen.sh new file mode 100755 index 0000000..e8c94af --- /dev/null +++ b/debian/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh + + +rm -rf config +rm -f aclocal.m4 config.guess config.statusconfig.sub configure INSTALL + +autoreconf --force --install + +rm -f config.sub config.guess +ln -s /usr/share/misc/config.sub . +ln -s /usr/share/misc/config.guess . diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3b4fd99 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +vyos-nhrp (0.1.0) precise; urgency=low + + * Initial release. + + -- Kim Hagen <khagen@multi-development.com> Fri, 08 Aug 2014 13:50:54 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..9c6a8be --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: vyos-nhrp +Section: contrib/net +Priority: extra +Maintainer: SO3 Group <maintainers@so3group.net> +Standards-Version: 3.9.1 +Build-Depends: debhelper (>= 5), autotools-dev, autoconf + +Package: vyos-nhrp +Architecture: all +Depends: vyatta-cfg-system, + vyatta-cfg, + vyatta-op, + ${misc:Depends} +Replaces: vyos-nhrp +Description: Vyatta package vyos-nhrp + Vyatta package vyos-nhrp diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f437828 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Kim Hagen <kim.sidney@gmail.com> on +Sat, 17 Aug 2013. + +It's original content from the GIT repository + <https://github.com/UnicronNL/vyos-nhrp.git> + +Upstream Author: + + <maintainers@so3group.net> + +Copyright: + + Copyright (C) 2014 SO3 Group, Inc. + All Rights Reserved. + +License: + +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, 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. + +A copy of the GNU General Public License is available as +`/usr/share/common-licenses/GPL' in the Debian GNU/Linux distribution +or on the World Wide Web at `http://www.gnu.org/copyleft/gpl.html'. +You can also obtain it by writing to the Free Software Foundation, +Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, +MA 02110-1301, USA. + +The Debian packaging is (C) 2013, Daniil Baturin <daniil@baturin.org> and +is licensed under the GPL, see above. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..50bd824 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/lintian b/debian/lintian new file mode 100644 index 0000000..eafb4cc --- /dev/null +++ b/debian/lintian @@ -0,0 +1,2 @@ +vyos-nhrp: file-in-unusual-dir +vyos-nhrp: dir-or-file-in-opt diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..0b665b2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,105 @@ +#!/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) +PACKAGE=vyos-nhrp +PKGDIR=$(CURDIR)/debian/$(PACKAGE) + +CFLAGS = -Wall -g + +configure = ./configure +configure += --host=$(DEB_HOST_GNU_TYPE) +configure += --build=$(DEB_BUILD_GNU_TYPE) +configure += --prefix=/opt/vyatta +configure += --mandir=\$${prefix}/share/man +configure += --infodir=\$${prefix}/share/info +configure += CFLAGS="$(CFLAGS)" +configure += LDFLAGS="-Wl,-z,defs" + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure.ac Makefile.am + chmod +x debian/autogen.sh + debian/autogen.sh + +config.status: configure + dh_testdir + rm -f config.cache + $(configure) + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +clean: clean-patched + +# Clean everything up, including everything auto-generated +# at build time that needs not to be kept around in the Debian diff +clean-patched: + dh_testdir + dh_testroot + if test -f Makefile ; then $(MAKE) clean distclean ; fi + rm -f build-stamp + rm -f config.status config.sub config.guess config.log + rm -f aclocal.m4 configure Makefile.in Makefile INSTALL + rm -rf config + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(PKGDIR) install + + install -D --mode=0644 debian/lintian $(PKGDIR)/usr/share/lintian/overrides/$(PACKAGE) + +# Build architecture-independent files here. +binary-indep: build install + rm -f debian/files + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_install + dh_installdebconf + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + if [ -f "../.VYATTA_DEV_BUILD" ]; then \ + dh_gencontrol -- -v999.dev; \ + else \ + dh_gencontrol; \ + fi + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# This is an architecture independent package +# so; we have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install diff --git a/debian/vyos-nhrp.debhelper.log b/debian/vyos-nhrp.debhelper.log new file mode 100644 index 0000000..3274745 --- /dev/null +++ b/debian/vyos-nhrp.debhelper.log @@ -0,0 +1,13 @@ +dh_installdirs +dh_installchangelogs +dh_installdocs +dh_install +dh_installdebconf +dh_link +dh_strip +dh_compress +dh_fixperms +dh_installdeb +dh_gencontrol +dh_md5sums +dh_builddeb diff --git a/debian/vyos-nhrp.substvars b/debian/vyos-nhrp.substvars new file mode 100644 index 0000000..abd3ebe --- /dev/null +++ b/debian/vyos-nhrp.substvars @@ -0,0 +1 @@ +misc:Depends= |