mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-18 06:59:43 +02:00
add debian package stuff
add ITP bug number to 'debian/changelog' Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
This commit is contained in:
parent
78e4ba0d9c
commit
b6807a7c0d
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
fped (0.0+r5974-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Initial release (Closes: #599090).
|
||||||
|
|
||||||
|
-- Xiangfu Liu <xiangfu@sharism.cc> Mon, 04 Oct 2010 23:27:52 +0800
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
7
|
25
debian/control
vendored
Normal file
25
debian/control
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
Source: fped
|
||||||
|
Section: electronics
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Xiangfu Liu <xiangfu@sharism.cc>
|
||||||
|
Build-Depends: debhelper (>= 5), pkg-config, flex, bison, fig2dev (transfig), ImageMagick, Netpbm, bash, Gtk+ 2.x development package (libgtk2.0-dev or similar), Liberation Fonts (ttf-liberation or similar)
|
||||||
|
Standards-Version: 3.9.1
|
||||||
|
Homepage: http://svn.openmoko.org/trunk/eda/fped
|
||||||
|
|
||||||
|
Package: fped
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: fped - Footprint editor
|
||||||
|
fped is an editor that allows the interactive creation of footprints of
|
||||||
|
electronic components. Footprint definitions are stored in a text format
|
||||||
|
that resembles a programming language.
|
||||||
|
|
||||||
|
The language is constrained such that anything that can be expressed in
|
||||||
|
the textual definition also has a straightforward equivalent operation
|
||||||
|
that can be performed through the GUI.
|
||||||
|
|
||||||
|
This README describes only the footprint definition language. A
|
||||||
|
description of the GUI can be found here:
|
||||||
|
http://people.openmoko.org/werner/fped/gui.html
|
||||||
|
|
||||||
|
|
39
debian/copyright
vendored
Normal file
39
debian/copyright
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
This work was packaged for Debian by:
|
||||||
|
|
||||||
|
Xiangfu Liu <xiangfu@sharism.cc> on Mon, 4 Oct 2010 15:14:14 +0800
|
||||||
|
|
||||||
|
It was downloaded from:
|
||||||
|
|
||||||
|
http://svn.openmoko.org/trunk/eda/fped
|
||||||
|
|
||||||
|
Upstream Author(s):
|
||||||
|
|
||||||
|
Werner Almesberger <werner@openmoko.org>
|
||||||
|
|
||||||
|
Copyright:
|
||||||
|
|
||||||
|
Copyright 2009, 2010 by Werner Almesberger
|
||||||
|
|
||||||
|
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 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
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 program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
|
||||||
|
|
||||||
|
The Debian packaging is:
|
||||||
|
|
||||||
|
Copyright (C) 2010 Xiangfu Liu <xiangfu@sharism.cc> and is licensed
|
||||||
|
under the GPL version 2, see above.
|
||||||
|
|
1
debian/dirs
vendored
Normal file
1
debian/dirs
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
usr/bin
|
27
debian/rules
vendored
Executable file
27
debian/rules
vendored
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/autotools.mk
|
||||||
|
|
||||||
|
DEB_INSTALL_MANPAGES_dfu-util := doc/dfu-util.1
|
||||||
|
|
||||||
|
# We must first call ./autogen.sh to generate the autotools stuff.
|
||||||
|
post-patches:: debian/stamp-autothings-update
|
||||||
|
debian/stamp-autothings-update:
|
||||||
|
@#aclocal
|
||||||
|
@#autoheader
|
||||||
|
@#automake --foreign --add-missing --copy
|
||||||
|
@#autoconf
|
||||||
|
./autogen.sh
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
# Do not install the dfu-util_static binary, it's not needed in Debian.
|
||||||
|
binary-post-install/dfu-util::
|
||||||
|
rm -f debian/dfu-util/usr/bin/dfu-util_static
|
||||||
|
|
||||||
|
clean::
|
||||||
|
rm -f debian/stamp-autothings-update
|
||||||
|
@# Delete generated files, we don't want them in the diff.
|
||||||
|
rm -f aclocal.m4 config.h.in configure Makefile.in m4/install-sh
|
||||||
|
rm -f m4/missing m4/depcomp src/Makefile.in src/dfu-version.h
|
||||||
|
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
1
debian/watch
vendored
Normal file
1
debian/watch
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
# We track fped svn revisions, thus no need for a watch file.
|
Loading…
Reference in New Issue
Block a user