mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
Adam Di Carlo changes. see debian/changelog
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3633 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
30c2c12d50
commit
ef33d014c6
12
debian/changelog
vendored
12
debian/changelog
vendored
@ -1,3 +1,15 @@
|
|||||||
|
mplayer (0.50-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* debian/rules: improve install routine; will include mencore if it is
|
||||||
|
built
|
||||||
|
* debian/control: remove invalid source recommends
|
||||||
|
* debian/copyright: mention that binary distribution is not allowed
|
||||||
|
* debian/rules: install /usr/share/mplayer/codecs.conf; this should
|
||||||
|
probably be a config file
|
||||||
|
* turn on fbdev option
|
||||||
|
|
||||||
|
-- Adam Di Carlo <aph@debian.org> Sat, 15 Dec 2001 03:33:44 -0500
|
||||||
|
|
||||||
mplayer (0.50-2) unstable; urgency=low
|
mplayer (0.50-2) unstable; urgency=low
|
||||||
|
|
||||||
* gui added to package/menu
|
* gui added to package/menu
|
||||||
|
1
debian/control
vendored
1
debian/control
vendored
@ -4,7 +4,6 @@ Priority: optional
|
|||||||
Maintainer: Dariush Pietrzak <eyck@ghost.anime.pl>
|
Maintainer: Dariush Pietrzak <eyck@ghost.anime.pl>
|
||||||
Standards-Version: 3.2.1
|
Standards-Version: 3.2.1
|
||||||
Build-Depends:c++-compiler, libglib-dev, libgtk-dev, xlibs-dev, libpng2-dev, zlib1g-dev, debhelper (>= 2)
|
Build-Depends:c++-compiler, libglib-dev, libgtk-dev, xlibs-dev, libpng2-dev, zlib1g-dev, debhelper (>= 2)
|
||||||
Recommends: libsdl1.2-dev
|
|
||||||
|
|
||||||
Package: mplayer
|
Package: mplayer
|
||||||
Architecture: any
|
Architecture: any
|
||||||
|
4
debian/copyright
vendored
4
debian/copyright
vendored
@ -5,3 +5,7 @@ Original source can be found at: http://www.mplayerHQ.hu/homepage/
|
|||||||
|
|
||||||
Copyrighted by various authors. Licensed under the terms of GNU GPL.
|
Copyrighted by various authors. Licensed under the terms of GNU GPL.
|
||||||
See /usr/share/common-licenses/GPL for details.
|
See /usr/share/common-licenses/GPL for details.
|
||||||
|
|
||||||
|
This package may not be distributed in binary form. Debian packaging
|
||||||
|
in provided for convenience only.
|
||||||
|
|
||||||
|
3
debian/dirs
vendored
3
debian/dirs
vendored
@ -1,3 +1,4 @@
|
|||||||
usr/bin
|
usr/bin
|
||||||
usr/sbin
|
usr/sbin
|
||||||
usr/share/man/man1/
|
usr/share/man/man1
|
||||||
|
usr/share/mplayer
|
||||||
|
52
debian/rules
vendored
52
debian/rules
vendored
@ -5,7 +5,14 @@
|
|||||||
# This is the debhelper compatability version to use.
|
# This is the debhelper compatability version to use.
|
||||||
export DH_COMPAT=2
|
export DH_COMPAT=2
|
||||||
|
|
||||||
package=mplayer
|
package := mplayer
|
||||||
|
prefix := debian/$(package)
|
||||||
|
arch := $(shell dpkg --print-architecture)
|
||||||
|
|
||||||
|
ifeq ($(arch),powerpc)
|
||||||
|
arch-conf += --disable-mp1e
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
configure: configure-stamp
|
configure: configure-stamp
|
||||||
configure-stamp:
|
configure-stamp:
|
||||||
@ -20,10 +27,8 @@ build: configure-stamp build-stamp
|
|||||||
build-stamp:
|
build-stamp:
|
||||||
dh_testdir
|
dh_testdir
|
||||||
|
|
||||||
# Add here commands to compile the package.
|
# commands to compile the package.
|
||||||
#$(MAKE)
|
${MAKE}
|
||||||
#/usr/bin/docbook-to-man debian/etherconf.sgml > etherconf.1
|
|
||||||
${MAKE} mplayer
|
|
||||||
|
|
||||||
touch build-stamp
|
touch build-stamp
|
||||||
|
|
||||||
@ -32,49 +37,34 @@ clean:
|
|||||||
dh_testroot
|
dh_testroot
|
||||||
rm -f build-stamp configure-stamp
|
rm -f build-stamp configure-stamp
|
||||||
|
|
||||||
# Add here commands to clean up after the build process.
|
# commands to clean up after the build process.
|
||||||
#-$(MAKE) clean
|
|
||||||
# $(checkdir)
|
|
||||||
# -rm -f build
|
|
||||||
-$(MAKE) distclean
|
-$(MAKE) distclean
|
||||||
# -rm -f `find . -name "*~"`
|
|
||||||
# -rm -rf debian/tmp debian/files* core debian/substvars
|
|
||||||
dh_clean
|
dh_clean
|
||||||
|
|
||||||
|
# Build architecture-independent files here.
|
||||||
|
binary-indep: build
|
||||||
|
# We have nothing to do by default.
|
||||||
|
|
||||||
|
# Build architecture-dependent files here.
|
||||||
install: build
|
binary-arch: build
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_clean -k
|
dh_clean -k
|
||||||
dh_installdirs
|
dh_installdirs
|
||||||
|
|
||||||
# Add here commands to install the package into debian/<packagename>
|
# commands to install the package into debian/<packagename>
|
||||||
# $(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install
|
#$(MAKE) prefix=$(prefix)/usr install
|
||||||
# $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr
|
|
||||||
# install -d $(CURDIR)/debian/tmp/usr/bin
|
|
||||||
install -m 755 -s mplayer $(CURDIR)/debian/`dh_listpackages`/usr/bin/mplayer
|
install -m 755 -s mplayer $(CURDIR)/debian/`dh_listpackages`/usr/bin/mplayer
|
||||||
dh_link usr/bin/mplayer usr/bin/gmplayer
|
dh_link usr/bin/mplayer usr/bin/gmplayer
|
||||||
|
install -o root -g root -m 0644 etc/codecs.conf $(prefix)/usr/share/mplayer
|
||||||
|
|
||||||
#Do we really need this?:
|
|
||||||
# install -o root -g root -m 4755 fibmap_mplayer usr/bin/fibmap_mplayer
|
|
||||||
|
|
||||||
|
|
||||||
# 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_installdebconf
|
dh_installdebconf
|
||||||
dh_installdocs DOCS/*
|
dh_installdocs DOCS/*
|
||||||
dh_installexamples etc/example.conf
|
dh_installexamples etc/example.conf
|
||||||
dh_installmenu
|
dh_installmenu
|
||||||
# dh_installmime
|
# dh_installmime
|
||||||
dh_installmanpages TVout/fbset/fb.modes.5 TVout/fbset/fbset.8
|
# dh_installmanpages TVout/fbset/fb.modes.5 TVout/fbset/fbset.8
|
||||||
|
# dh_installmanpages # handled by make install above
|
||||||
dh_installinfo
|
dh_installinfo
|
||||||
# dh_undocumented
|
# dh_undocumented
|
||||||
dh_installchangelogs
|
dh_installchangelogs
|
||||||
|
Loading…
Reference in New Issue
Block a user