Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Vorbis tools
Commits
d05ebaa9
Commit
d05ebaa9
authored
Jul 12, 2002
by
calc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debian packaging updates
svn path=/trunk/vorbis-tools/; revision=3595
parent
f691fb20
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
101 additions
and
26 deletions
+101
-26
debian/Makefile.am
debian/Makefile.am
+1
-1
debian/changelog
debian/changelog
+8
-1
debian/control
debian/control
+1
-1
debian/rules
debian/rules
+81
-22
debian/vorbis-tools.files
debian/vorbis-tools.files
+0
-1
debian/vorbis-tools.install
debian/vorbis-tools.install
+9
-0
debian/vorbis-tools.manpages
debian/vorbis-tools.manpages
+1
-0
No files found.
debian/Makefile.am
View file @
d05ebaa9
...
...
@@ -3,4 +3,4 @@
AUTOMAKE_OPTIONS
=
foreign
EXTRA_DIST
=
changelog control copyright rules vorbis-tools.README.Debian
\
vorbis-tools.
files
vorbis-tools.manpages vorbis-tools.mime
vorbis-tools.
install
vorbis-tools.manpages vorbis-tools.mime
debian/changelog
View file @
d05ebaa9
vorbis-tools (1.0.0-1) unstable; urgency=low
* New upstream.
-- Christopher L Cheney <ccheney@debian.org> Thu, 11 Jul 2002 15:00:00 -0500
vorbis-tools (1.0rc3-1) unstable; urgency=low
* New upstream. (Closes: #90852, #103707, #104366, #107898, #108803, #113855, #114730, #115859, #117091)
* New upstream. (Closes: #90852, #103707, #104366, #107898, #108803,
#113855, #114730, #115859, #117091)
* added autotools target (config.* updater) to rules
-- Christopher L Cheney <ccheney@debian.org> Mon, 24 Dec 2001 11:00:00 -0600
...
...
debian/control
View file @
d05ebaa9
...
...
@@ -2,7 +2,7 @@ Source: vorbis-tools
Section: sound
Priority: optional
Maintainer: Christopher L Cheney <ccheney@debian.org>
Build-Depends: debhelper (>> 3.0.0),
libcurl-dev |
libcurl-
ssl-
dev, libao-dev (>> 0.8.
2
), libogg-dev (>> 1.0
rc3
), libvorbis-dev (>> 1.0
rc3), autotools-dev, devscripts
Build-Depends:
autotools-dev,
debhelper (>> 3.0.0),
devscripts,
libcurl-dev, libao-dev (>> 0.8.
3
), libogg-dev (>> 1.0
.0
), libvorbis-dev (>> 1.0
.0)
Standards-Version: 3.5.6.0
Package: vorbis-tools
...
...
debian/rules
View file @
d05ebaa9
...
...
@@ -5,26 +5,46 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This is the debhelper compat
a
bility version to use.
export DH_COMPAT=
3
# This is the debhelper compat
i
bility version to use.
export DH_COMPAT=
4
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
# This has to be exported to make some magic below work.
export DH_OPTIONS
# 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)
objdir = $(CURDIR)/obj-$(DEB_BUILD_GNU_TYPE)
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -g
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
configure: configure-stamp
configure-stamp:
dh_testdir
# If compiling cvs version change to ./autogen.sh --prefix=/usr
./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \
# make build directory
mkdir $(objdir)
# run configure with build tree $(objdir)
# change ../configure to ../autogen.sh for CVS build
cd $(objdir) && \
../configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \
--prefix=/usr
touch configure-stamp
build:
configure-stamp
build-stamp
build-stamp:
build: build-stamp
build-stamp:
configure-stamp
dh_testdir
cd $(objdir) && \
$(MAKE)
touch build-stamp
...
...
@@ -44,49 +64,88 @@ autotools:
echo WARNING: GNU config scripts updated from master copies 1>&2 ;\
fi
debian-clean:
dh_testdir
dh_testroot
dh_clean
clean: autotools
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
-$(MAKE) distclean
# Remove build tree
rm -rf $(objdir)
# if Makefile exists run distclean
if test -f Makefile; then \
$(MAKE) distclean; \
fi
#if test -d CVS; then \
$(MAKE) cvs-clean ;\
fi
dh_clean
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
$(MAKE) install DESTDIR=`pwd`/debian/tmp
cd $(objdir) && \
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
dh_install
# Build architecture-dependent files here.
binary-arch: build install
# This single target is used to build all the packages, all at once, or
# one at a time. So keep in mind: any options passed to commands here will
# affect _all_ packages. Anything you want to only affect one package
# should be put in another target, such as the install target.
binary-common:
dh_testdir
dh_testroot
dh_
movefile
s
#
dh_
installxfont
s
dh_installchangelogs
dh_installdocs
# dh_installexamples
dh_installexamples
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installpam
dh_installmime
# dh_installinit
# dh_installcron
# dh_installinfo
# dh_undocumented
dh_installman
#dh_undocumented
dh_installchangelogs
dh_link
dh_strip
dh_link
dh_compress
dh_fixperms
dh_makeshlibs -V
dh_installdeb
# dh_perl
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture independant packages using the common target.
binary-indep: build install
# $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
# Build architecture dependant packages using the common target.
binary-arch: build install
$(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
# Any other binary targets build just one binary package at a time.
binary-%: build install
$(MAKE) -f debian/rules binary-common DH_OPTIONS=-p$*
binary: binary-indep binary-arch
.PHONY:
autotools
build clean binary-indep binary-arch binary install configure
.PHONY: build clean binary-indep binary-arch binary install configure
debian/vorbis-tools.files
deleted
100644 → 0
View file @
f691fb20
usr/bin/*
debian/vorbis-tools.install
0 → 100644
View file @
d05ebaa9
debian
/
tmp
/
usr
/
bin
/
ogg123
debian
/
tmp
/
usr
/
bin
/
oggdec
debian
/
tmp
/
usr
/
bin
/
oggenc
debian
/
tmp
/
usr
/
bin
/
ogginfo
debian
/
tmp
/
usr
/
bin
/
vcut
debian
/
tmp
/
usr
/
bin
/
vorbiscomment
debian
/
tmp
/
usr
/
share
/
locale
/
fr
/
LC_MESSAGES
/
vorbis
-
tools
.
mo
debian
/
tmp
/
usr
/
share
/
locale
/
nl
/
LC_MESSAGES
/
vorbis
-
tools
.
mo
debian
/
tmp
/
usr
/
share
/
locale
/
sv
/
LC_MESSAGES
/
vorbis
-
tools
.
mo
debian/vorbis-tools.manpages
View file @
d05ebaa9
ogg123/ogg123.1
oggdec/oggdec.1
oggenc/man/oggenc.1
ogginfo/ogginfo.1
vcut/vcut.1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment