Browse Source

added many self-build-* specs

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@620 ec354946-7b23-47d6-9f5a-488ba84defc7
munepi 14 years ago
parent
commit
98d82d73d7

+ 167 - 0
nonfree/self-build-lame/lame-vl.spec

@@ -0,0 +1,167 @@
+Summary:	LAME Ain't an MP3 Encoder... but it's the best.
+Name:		lame
+Version:	3.98.3
+Release:	1%{?_dist_release}
+License:	LGPL
+Group:		Applications/Multimedia
+URL:		http://lame.sourceforge.net/
+#Source:		http://prdownloads.sourceforge.net/lame/lame-%{version}.tar.gz
+Source:		http://prdownloads.sourceforge.net/lame/lame-%{version}.tar.gz
+Patch1:         %{name}-noexecstack.patch
+Patch2:         %{name}-pmake.patch
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+BuildRequires:	ncurses-devel
+BuildRequires:	gtk+-devel
+%ifarch %{ix86} x86_64
+BuildRequires:	nasm
+%endif
+Requires:	ncurses
+
+Requires(post):   ldconfig
+Requires(postun): ldconfig
+
+%description
+LAME is an educational tool to be used for learning about MP3 encoding.
+The goal of the LAME project is to use the open source model to improve
+the psycho acoustics, noise shaping and speed of MP3.
+
+%package mp3x
+Summary:	GTK frame analyzer for lame
+Group:		Applications/Multimedia
+Requires:	%{name} = %{version}-%{release}
+Requires:	gtk+
+
+%description mp3x
+LAME is an educational tool to be used for learning about MP3 encoding.
+The goal of the LAME project is to use the open source model to improve
+the psycho acoustics, noise shaping and speed of MP3.
+
+This package contains the GTK frame analyzer.
+
+%package devel
+Summary:	Shared and static libraries for LAME.
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+
+%description devel
+LAME is an educational tool to be used for learning about MP3 encoding.
+The goal of the LAME project is to use the open source model to improve
+the psycho acoustics, noise shaping and speed of MP3.
+
+This package contains the libraries and includes files needed to develop
+applications with lame.
+
+%prep
+%setup -q
+
+%patch1 -p1 -b .noexec
+%patch2 -p1 -b .pmake
+
+%build
+%__sed -i -e 's/^\(\s*hardcode_libdir_flag_spec\s*=\).*/\1/' configure
+%ifarch %{ix86} x86_64
+export CFLAGS="$RPM_OPT_FLAGS -ffast-math"
+%endif
+%configure \
+    --disable-dependency-tracking \
+    --disable-static \
+%ifarch %{ix86} x86_64
+    --enable-nasm \
+%else
+    --disable-nasm \
+%endif
+    --enable-decoder \
+    --without-vorbis \
+    --enable-mp3x \
+    --enable-mp3rtp \
+    --enable-decode-layer1 \
+    --enable-brhist \
+    --disable-debug
+
+%__make %{?_smp_mflags}
+
+%check
+%__make test
+
+%install
+%__rm -rf %{buildroot}
+%makeinstall
+
+%__rm -rf installed-docs
+%__mv -f %{buildroot}%{_datadir}/doc/%{name} installed-docs
+
+# some apps still expect to find <lame.h>
+%__ln_s -f lame/lame.h %{buildroot}%{_includedir}/lame.h
+
+# remove unpackaged files
+%__rm -f $RPM_BUILD_ROOT%{_libdir}/*.{la,a}
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%clean
+%__rm -rf %{buildroot}
+
+%files
+%defattr (-,root,root)
+%doc COPYING ChangeLog LICENSE README TODO USAGE
+%doc installed-docs/*
+%{_bindir}/lame
+%{_bindir}/mp3rtp
+%{_libdir}/lib*.so.*
+%{_mandir}/man1/lame.1*
+
+%files mp3x
+%defattr (-,root,root)
+%{_bindir}/mp3x
+
+%files devel
+%defattr (-,root,root)
+%doc API HACKING STYLEGUIDE
+%{_libdir}/lib*.so
+%{_includedir}/lame
+%{_includedir}/lame.h
+
+%changelog
+* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.3-1
+- new upstream release
+
+* Sat Sep 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.2-2
+- change release to sync with self-build-lame
+
+* Sat Sep 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.2-1
+- new upstream release
+- applied some patches from RPM Fusion development
+- added in %%configure: 
+  --enable-decode-layer1
+  --disable-dependency-tracking
+  --disable-static
+
+* Fri Jun 05 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-5
+- change release to sync with self-build-lame
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-4
+- change release to sync with self-build-lame
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-3
+- spec in utf8
+- remove *.la
+
+* Wed May 07 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-2
+- change %%{__make} option to -j1 <BTS:VineLinux:611>
+
+* Sat May 03 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-1
+- apply new versioning policy
+
+* Sun Nov 12 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.97-0vl3
+- fix typo
+
+* Sun Nov 12 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.97-0vl2
+- link libmp3lame with libm (patch1)
+
+* Sat Nov 11 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.97-0vl1
+- initial build

+ 159 - 0
nonfree/self-build-lame/self-build-lame-vl.spec

@@ -0,0 +1,159 @@
+%define pkgname lame
+%define name	self-build-%{pkgname}
+%define version	3.98.3
+%define release	1%{?_dist_release}
+
+#% define sourceurl http://prdownloads.sourceforge.net/lame/lame-%{version}.tar.gz
+%define sourceurl http://prdownloads.sourceforge.net/lame/lame-%{version}.tar.gz
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+Source1:	%{pkgname}-noexecstack.patch
+Source2:	%{pkgname}-pmake.patch
+
+License:	GPL
+Group:		Restricted Software
+
+Requires(post):		self-build-setup >= 0.8
+
+# (build)requies of target package.
+Requires(post):		ncurses
+Requires(post):		ncurses-devel
+Requires(post):		gtk+
+Requires(post):		gtk+-devel
+%ifarch %{ix86} x86_64
+Requires(post):		nasm
+%endif
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+Lame is an open source developing mp3 encoder.
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+lame はオープンソースで開発されている mp3 エンコーダです。
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version} の rpm
+パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+%prep
+[ "%{version}-%{release}" != $(rpm -q --queryformat "%%{version}-%%{release}\n" --specfile %{SOURCE0} | tail -1) ] && exit 1
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE1} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE2} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec %{sourceurl} 65000
+/usr/lib/rpm/pre-allocate-rpm.sh %{pkgname}-%{version}-%{release} \
+                                 %{pkgname}-mp3x-%{version}-%{release} \
+                                 %{pkgname}-devel-%{version}-%{release}
+
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}
+
+%changelog
+* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.3-1
+- new upstream release
+- renamed %%{Source0} to lame-vl.spec
+
+* Sat Sep 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.2-2
+- rebuilt to add signature
+
+* Sat Sep 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 3.98.2-1
+- new upstream release
+
+* Fri Jun 05 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-5
+- dropped BuildArch: noarch
+  (because if BuildArch: noarch, %%ifarch is invalid)
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-4
+- added BuildArch: noarch
+- avoided to execute self-build-rpm.sh on RPM transaction
+  - moved %%post actions to %%posttrans
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 3.97-3
+- spec in utf8
+- remove *.la
+
+* Wed May 07 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-2
+- change %%{__make} option to -j1 in Source0 <BTS:VineLinux:611>
+- remove trailing /* in %%files <BTS:VineLinux:622>
+
+* Sat May 03 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-1
+- run pre-allocate-rpm.sh in %%post
+- set PreReq: self-build-setup >= 0.8
+- apply new versioning policy
+
+* Thu Nov 01 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-0vl3
+- update description about self-build package
+
+* Mon Oct 22 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-0vl2
+- unset BuildArch: noarch
+
+* Thu Oct 18 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.97-0vl1
+- initial build for Vine Linux
+  (using same version number of target software)

+ 101 - 0
nonfree/self-build-libdca/libdca-vl.spec

@@ -0,0 +1,101 @@
+%define name libdca
+%define version 0.0.5
+%define release 4%{?_dist_release}
+
+Summary: DTS Coherent Acoustics decoder library
+Name: %{name}
+Version: %{version}
+Release: %{release}
+Source: http://download.videolan.org/pub/videolan/libdca/0.0.5/%{name}-%{version}.tar.bz2
+Patch0: libdca-0.0.5-relsymlinks.patch
+URL: http://www.videolan.org/developers/libdca.html
+License: GPLv2+
+Group: System Environment/Libraries
+
+#Requires: 
+BuildRequires: automake, libtool
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+
+%description
+libdca is a free library for decoding DTS Coherent Acoustics streams. It is
+released under the terms of the GPL license. The DTS Coherent Acoustics
+standard is used in a variety of applications, including DVD, DTS audio CD and
+radio broadcasting.
+
+%package devel
+Summary: Development files for %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: pkgconfig
+
+%description devel
+Development files for %{name}.
+
+Install %{name}-devel if you wish to develop or compile
+applications that use %{name}.
+
+%package tools
+Summary: Various tools for use with %{name}
+Group: Applications/Multimedia
+
+%description tools
+Various tools that use %{name}.
+
+%prep
+rm -rf $RPM_BUILD_ROOT
+
+%setup -q
+%patch0 -p1 -b .relsymlinks
+
+%build
+%configure
+%{__make} %{?_smp_mflags} OPT_CFLAGS="$RPM_OPT_FLAGS"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make DESTDIR=$RPM_BUILD_ROOT install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,0755)
+%doc AUTHORS COPYING ChangeLog NEWS README
+%{_libdir}/*.so.*
+
+%files tools
+%defattr(-,root,root,0755)
+%{_bindir}/*
+%{_mandir}/man1/*
+
+%files devel
+%defattr(-,root,root,-)
+%doc TODO doc/%{name}.txt
+%{_libdir}/pkgconfig/libd??.pc
+%{_includedir}/d??.h
+%{_libdir}/%{name}.so
+%{_libdir}/libd??.a
+%exclude %{_libdir}/libd??.la
+
+%changelog
+* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.5-4
+- change release to sync with self-build-libdca
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.0.5-3
+- change release to sync with self-build-libdca
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.0.5-2
+- spec in utf8
+- remove *.la
+
+* Sun May 18 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.0.5-1
+- apply new versioning policy
+
+* Sat Mar 1 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.0.5-0vl1
+- initial build for Vine Linux 4.2
+
+### end of file

+ 134 - 0
nonfree/self-build-libdca/self-build-libdca-vl.spec

@@ -0,0 +1,134 @@
+%define pkgname libdca
+%define name	self-build-%{pkgname}
+%define version 0.0.5
+%define release	4%{?_dist_release}
+
+%define sourceurl0	http://download.videolan.org/pub/videolan/%{pkgname}/%{version}/%{pkgname}-%{version}.tar.bz2
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+Source1:	libdca-0.0.5-relsymlinks.patch
+
+License:	GPLv2+
+Group:		Restricted Software
+
+Requires(post):		self-build-setup >= 0.9.9
+
+# (build)requies of target package.
+Requires(post):		automake, libtool
+
+BuildArch:	noarch
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+libdca is a free library for decoding DTS Coherent Acoustics
+streams. It is released under the terms of the GPL license.
+The DTS Coherent Acoustics standard is used in a variety of
+applications, including DVD, DTS audio CD and radio broadcasting.
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+libdca は DTS Coherent Acoustics ストリームをデコードするため
+のフリーなライブラリです.GPL の下でリリースされています.
+DTS Coherent Acoustics は DVD や DTS オーディオ,ラジオ放送に
+含まれており、多様なアプリケーションで使われています.
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version}
+の rpm パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+%prep
+[ "%{version}-%{release}" != $(rpm -q --queryformat "%%{version}-%%{release}\n" --specfile %{SOURCE0} | tail -1) ] && exit 1
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE1} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec "%{sourceurl0}" 30000
+/usr/lib/rpm/pre-allocate-rpm.sh %{pkgname}-%{version}-%{release} \
+                                 %{pkgname}-devel-%{version}-%{release}
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}
+
+%changelog
+* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.5-4
+- renamed %%{Source0} to libdca-vl.spec
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.0.5-3
+- added BuildArch: noarch
+- avoided to execute self-build-rpm.sh on RPM transaction
+  - moved %%post actions to %%posttrans
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.0.5-2
+- spec in utf8
+- remove *.la
+
+* Sun May 18 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.0.5-1
+- run pre-allocate-rpm.sh in %%post
+- set PreReq: self-build-setup >= 0.8
+- apply new versioning policy
+
+* Tue Feb 19 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.0.5-0vl1
+- initial build for Vine Linux 4.2
+
+### end of file

+ 123 - 0
nonfree/self-build-libdvbpsi/libdvbpsi-vl.spec

@@ -0,0 +1,123 @@
+## -*- coding: utf-8-unix -*-
+%define real_name libdvbpsi5
+
+Summary: 	Library for MPEG TS and DVB PSI tables decoding and generation
+Name: 		libdvbpsi
+Version: 	0.1.6
+Release: 	2%{?_dist_release}
+License: 	GPLv2+
+Group: 		System Environment/Libraries
+URL: 		http://www.videolan.org/developers/libdvbpsi.html
+Source0: 	http://download.videolan.org/pub/libdvbpsi/%{version}/%{real_name}-%{version}.tar.bz2
+BuildRoot: 	%{_tmppath}/%{name}-%{version}-root
+BuildRequires:	graphviz doxygen
+
+%description
+libdvbpsi is a very simple and fully portable library designed for
+MPEG TS and DVB PSI table decoding and generation.
+
+%package devel
+Summary: 	Development package for %{name}
+Group: 		Development/Libraries
+Requires: 	%{name} = %{version}-%{release}
+
+%description devel
+libdvbpsi is a very simple and fully portable library designed for
+MPEG TS and DVB PSI table decoding and generation.
+This package contains development files for %{name}
+
+%prep
+%setup -q -n %{real_name}-%{version}
+
+
+%build
+%configure \
+    --disable-dependency-tracking \
+    --disable-static
+%__make %{?_smp_mflags}
+%__make doc
+
+
+%install
+%__rm -rf $RPM_BUILD_ROOT
+%__make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
+%__rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
+
+
+%clean
+%__rm -rf $RPM_BUILD_ROOT
+
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING ChangeLog README
+%{_libdir}/%{name}.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%doc doc/doxygen/html
+%{_includedir}/dvbpsi/
+%{_libdir}/lib*.so
+
+
+%changelog
+* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.1.6-2
+- change release to sync with self-build-libdvbpsi
+
+* Sat Jan 16 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.1.6-1
+- built based on RPM Fusion development
+
+* Sat Oct 17 2009 kwizart < kwizart at gmail.com > - 0.1.6-6
+- Rebuild
+
+* Sun Apr  5 2009 kwizart < kwizart at gmail.com > - 0.1.6-5
+- Rebuild
+
+* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.1.6-4
+- rebuild for new F11 features
+
+* Mon Aug 04 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.1.6-3
+- rebuild
+
+* Tue Feb 26 2008 kwizart < kwizart at gmail.com > - 0.1.6-2
+- Rebuild for gcc43
+
+* Mon Oct 22 2007 kwizart < kwizart at gmail.com > - 0.1.6-1
+- Update to 0.1.6
+
+* Sun Oct 14 2007 kwizart < kwizart at gmail.com > - 0.1.5-3
+- Rpmfusion Merge Review
+
+* Mon Mar 13 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0.1.5-2
+- Drop Epoch completely
+
+* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
+- switch to new release field
+
+* Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
+- add dist
+
+* Tue Jul 12 2005 Ville Skytt辰 <ville.skytta at iki.fi> - 0:0.1.5-0.lvn.1
+- 0.1.5.
+- Build with dependency tracking disabled.
+- Miscellaneous specfile cleanups.
+
+* Mon May 17 2004 Dams <anvil[AT]livna.org> - 0:0.1.3-0.lvn.4
+- Added url in Source0
+
+* Sun Sep 28 2003 Dams <anvil[AT]livna.org> 0:0.1.3-0.fdr.3
+- Removed comment after scriptlets
+
+* Mon Aug 18 2003 Dams <anvil[AT]livna.org> 0:0.1.3-0.fdr.2
+- Moved some doc to devel package
+
+* Sat Aug 16 2003 Dams <anvil[AT]livna.org> 0:0.1.3-0.fdr.1
+- Added post/postun scriptlets
+- Using RPM_OPT_FLAGS
+- Updated to 0.1.3
+
+* Sun Jun 29 2003 Dams <anvil[AT]livna.org> 
+- Initial build.

+ 118 - 0
nonfree/self-build-libdvbpsi/self-build-libdvbpsi-vl.spec

@@ -0,0 +1,118 @@
+%define pkgname libdvbpsi
+%define name	self-build-%{pkgname}
+%define version 0.1.6
+%define release	2%{?_dist_release}
+
+%define real_name libdvbpsi5
+
+%define sourceurl0	http://download.videolan.org/pub/libdvbpsi/%{version}/%{real_name}-%{version}.tar.bz2
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+
+License:	GPLv2+
+Group:		Restricted Software
+
+# Requires(posttrans) not yet implemented. So we use (post) instead.
+Requires(post):		self-build-setup >= 0.9.9
+
+Requires(post):		graphviz
+Requires(post):		doxygen
+
+BuildArch:	noarch
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+libdvbpsi is a very simple and fully portable library designed for
+MPEG TS and DVB PSI table decoding and generation.
+
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+libdvbpsi は MPEG TS と DVB PSI テーブル復号と生成のために設計された
+とても単純で完全な汎用ライブラリです。
+
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version} の rpm
+パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+%prep
+[ "%{version}-%{release}" != $(rpm -q --queryformat "%%{version}-%%{release}\n" --specfile %{SOURCE0} | tail -1) ] && exit 1
+
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec "%{sourceurl0}" 95000
+/usr/lib/rpm/pre-allocate-rpm.sh %{pkgname}-%{version}-%{release} \
+                                 %{pkgname}-devel-%{version}-%{release}
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}
+
+%changelog
+* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.1.6-2
+- renamed %%{Source0} to libdvbpsi-vl.spec
+
+* Sat Jan 16 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.1.6-1
+- initial bulid for self-build

+ 169 - 0
nonfree/self-build-libdvdnav/libdvdnav-vl.spec

@@ -0,0 +1,169 @@
+Name:           libdvdnav
+Version:        4.1.3
+Release:        5%{?_dist_release}
+Summary:        A library for reading DVD video discs based on Ogle code
+
+Group:          System Environment/Libraries
+License:        GPLv2+
+Source:         http://www.mplayerhq.hu/MPlayer/releases/dvdnav/libdvdnav-%{version}.tar.bz2
+BuildRoot:      %{_tmppath}/%{name}-%{version}-root
+
+BuildRequires:  doxygen
+BuildRequires:  libdvdread-devel >= 4.1.3-1
+
+%description
+libdvdnav provides a simple library for reading DVD video discs.
+The code is based on Ogle and used in, among others, the Xine dvdnav plug-in.
+
+%package        devel
+Summary:        Development files for libdvdnav
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+Requires:       libdvdread-devel >= 4.1.3-1
+Requires:       pkgconfig
+
+%description    devel
+libdvdnav-devel contains the files necessary to build packages that use the
+libdvdnav library.
+
+%prep
+%setup -q
+
+%build
+./configure2 \
+    --disable-opts \
+    --disable-static \
+    --disable-strip \
+    --extra-cflags="%{optflags}" \
+    --libdir=%{_libdir} \
+    --prefix=%{_prefix} \
+    --shlibdir=%{_libdir} \
+    --with-dvdread-config="pkg-config dvdread" \
+
+%{__make} %{?_smp_mflags}
+pushd doc
+doxygen doxy.conf
+popd
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR=%{buildroot}
+%{__install} -d -m 755 %{buildroot}/%{_datadir}/aclocal
+%{__install} -p -m 644 m4/dvdnav.m4 %{buildroot}/%{_datadir}/aclocal
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog COPYING NEWS README TODO
+%{_libdir}/libdvdnav.so.*
+%{_libdir}/libdvdnavmini.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%doc doc/html/*
+%{_bindir}/dvdnav-config
+%{_libdir}/libdvdnav.so
+%{_libdir}/libdvdnavmini.so
+%{_includedir}/dvdnav
+%{_datadir}/aclocal/dvdnav.m4
+%{_libdir}/pkgconfig/dvdnav.pc
+%{_libdir}/pkgconfig/dvdnavmini.pc
+
+%changelog
+* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 4.1.3-5
+- change release to sync with self-build-libdvdnav
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-4
+- change release to sync with self-build-libdvdnav
+
+* Sat Jan 24 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-3
+- change release to sync with self-build-libdvdnav
+
+* Sat Dec 27 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-2
+- change release to sync with self-build-libdvdnav
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-1
+- initial bulid based on Fedora package
+
+* Tue Sep 09 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.3-1
+- update to 4.1.3 final
+
+* Sun Aug 31 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.3-0.4.rc1
+- update to 4.1.3rc1
+- require libdvdread with fixed API
+
+* Fri Jul 25 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.3-0.3
+- add missing file to -devel
+
+* Thu Jul 17 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.3-0.2
+- update to current SVN
+- use new external libdvdread
+
+* Fri Jun 06 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.3-0.1
+- update to current SVN (pre-4.1.3)
+- macroize
+- re-enable parallel make
+
+* Sun Apr 13 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.2-1
+- update to 4.1.2
+- drop obsolete patches (merged upstream)
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 4.1.1-6
+- Autorebuild for GCC 4.3
+
+* Sun Jan 27 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.1-5
+- fix missing <inttypes.h> include (bug 428910)
+
+* Sun Jan 06 2008 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.1-4
+- make sure -devel requires our version of libdvdread-devel
+
+* Thu Nov 22 2007 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.1-3
+- fix build with internal libdvdread
+
+* Wed Nov 21 2007 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.1-2
+- use upstream non-autotools buildsystem
+- build with external libdvdread for older releases
+- fix version.h
+- fix soname
+- fix lib paths on 64bit
+
+* Thu Nov 01 2007 Dominik Mierzejewski <rpm[AT]greysector.net> 4.1.1-1
+- switch to new upstream
+- libdvdread comes from here now
+- apply dvdread udf-related fixes from upstream SVN
+
+* Sun Aug 19 2007 Dominik Mierzejewski <rpm[AT]greysector.net> 0.1.10-4.20070819
+- update to current snapshot
+- specfile cleanups
+
+* Thu May 03 2007 Dominik Mierzejewski <rpm[AT]greysector.net> 0.1.10-3.20070503
+- update to current snapshot from new upstream
+- clean up some specfile cruft
+- disable static libs
+- drop unnecessary explicit dependency on libdvdread
+
+* Mon Mar 13 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0.1.10-2
+- Drop Epoch completely
+
+* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
+- switch to new release field
+- drop Epoch
+
+* Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
+- add dist
+
+* Wed Oct 13 2004 Ville Skytt霎ー <ville.skytta at iki.fi> - 0:0.1.10-0.lvn.1
+- Update to 0.1.10.
+- Disable dependency tracking to speed up the build.
+
+* Wed Jun 25 2003 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0:0.1.9-0.fdr.2: incorporated bugzilla suggestions, new release
+
+* Thu May 29 2003 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0:0.1.9-0.fdr.1: initial RPM release

+ 127 - 0
nonfree/self-build-libdvdnav/self-build-libdvdnav-vl.spec

@@ -0,0 +1,127 @@
+%define pkgname libdvdnav
+%define name	self-build-%{pkgname}
+%define version 4.1.3
+%define release	5%{?_dist_release}
+
+%define source0path	MPlayer/releases/dvdnav/%{pkgname}-%{version}.tar.bz2
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+
+License:	GPLv2+
+Group:		Restricted Software
+
+Requires(post):		self-build-setup >= 0.9.9
+
+Requires(post):		doxygen
+Requires(post):		libdvdread-devel >= 4.1.3-1
+
+BuildArch:	noarch
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+libdvdnav provides a simple library for reading DVD video discs.
+The code is based on Ogle and used in, among others, the Xine dvdnav plug-in.
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+libdvdnavはDVDビデオディスクを読み取るためのシンプルなライブラリを
+提供しています。
+そのコードは Ogle をベースにしていて、他の間で、xine dvdnav プラグインで、
+使用されています。
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version} の rpm
+パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+
+%prep
+[ "%{version}-%{release}" != $(rpm -q --queryformat "%%{version}-%%{release}\n" --specfile %{SOURCE0} | tail -1) ] && exit 1
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec \
+	http://www{1,2,3,4,5,7,8}.mplayerhq.hu/%{source0path} 15000
+/usr/lib/rpm/pre-allocate-rpm.sh %{pkgname}-%{version}-%{release} \
+                                 %{pkgname}-devel-%{version}-%{release}
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}/*
+
+%changelog
+* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 4.1.3-5
+- renamed %%{Source0} to libdvdnav-vl.spec
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-4
+- added BuildArch: noarch
+- avoided to execute self-build-rpm.sh on RPM transaction
+  - moved %%post actions to %%posttrans
+
+* Sat Jan 24 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-3
+- added BuildRequires: doxygen
+
+* Sat Dec 27 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-2
+- added PreReq: libdvdread-devel >= 4.1.3-1
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 4.1.3-1
+- initial bulid based on Fedora package

+ 127 - 0
nonfree/self-build-libmpeg2/libmpeg2-vl.spec

@@ -0,0 +1,127 @@
+Name:           libmpeg2
+Version:        0.5.1
+Release:        4%{?_dist_release}
+Summary:        MPEG-2 decoder libraries
+
+Group:          System Environment/Libraries
+License:        GPLv2+
+URL:            http://libmpeg2.sourceforge.net/
+Source0:        http://libmpeg2.sourceforge.net/files/libmpeg2-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires:  SDL-devel
+%if %{?_dist_release} == "vl5" || %{?_dist_release} == "vl6"
+BuildRequires:  libXt-devel
+BuildRequires:  libXv-devel
+%endif
+%if %{?_dist_release} == "vl4"
+BuildRequires:  XOrg-devel
+%endif
+
+%description
+libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video
+streams. It is released under the terms of the GPL license.
+
+%package -n     mpeg2dec
+Summary:        MPEG-2 decoder program
+Group:          Applications/Multimedia
+Requires:       %{name} = %{version}-%{release}
+
+%description -n mpeg2dec
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+%package        devel
+Summary:        Development files for %{name}
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+Requires:       pkgconfig
+Provides:       mpeg2dec-devel = %{version}-%{release}
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+%prep
+%setup -q
+iconv -f ISO-8859-1 -t UTF-8 AUTHORS > AUTHORS.tmp
+touch -r AUTHORS AUTHORS.tmp 
+%__cp -p -f AUTHORS.tmp AUTHORS
+%__rm AUTHORS.tmp
+
+
+%build
+%configure --disable-static
+
+# mpeg2dec have rpath
+# remove rpath from libtool
+sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
+sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+
+%__make %{?_smp_mflags} 
+
+
+%install
+%__rm -rf $RPM_BUILD_ROOT
+%__make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%__install -p"
+
+# remove unpackaged files
+find $RPM_BUILD_ROOT -name '*.la' -exec %__rm -f {} ';'
+
+
+%clean
+%__rm -rf $RPM_BUILD_ROOT
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog COPYING NEWS README TODO
+%{_libdir}/*.so.*
+
+%files -n mpeg2dec
+%defattr(-,root,root,-)
+%{_bindir}/corrupt_mpeg2
+%{_bindir}/extract_mpeg2
+%{_bindir}/mpeg2dec
+%{_mandir}/man1/*.1*
+
+%files devel
+%defattr(-,root,root,-)
+%doc CodingStyle doc/libmpeg2.txt doc/sample*.c
+%{_includedir}/mpeg2dec/
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/libmpeg2.pc
+%{_libdir}/pkgconfig/libmpeg2convert.pc
+
+
+%changelog
+* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.5.1-4
+- change release to sync with self-build-libmpeg2
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.5.1-3
+- change release to sync with self-build-libmpeg2
+
+* Fri Jan 23 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.5.1-2
+- added BuildRequires: XOrg-devel for vl4
+
+* Wed Jan 21 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.5.1-1
+- initial build
+
+* Fri Oct  4 2008 kwizart < kwizart at gmail.com > - 0.5.1-3
+- Fix CFLAGS on x86 producing selinux denials.
+
+* Wed Jul 30 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.5.1-2
+- rebuild for buildsys cflags issue
+
+* Fri Jul 18 2008 kwizart < kwizart at gmail.com > - 0.5.1-1
+- Update to 0.5.1
+
+* Tue Jul 15 2008 kwizart < kwizart at gmail.com > - 0.5.0-1
+- Initial package (based on mpeg2dec)
+

+ 124 - 0
nonfree/self-build-libmpeg2/self-build-libmpeg2-vl.spec

@@ -0,0 +1,124 @@
+%define pkgname libmpeg2
+%define name	self-build-%{pkgname}
+%define version 0.5.1
+%define release	4%{?_dist_release}
+
+%define sourceurl0	http://libmpeg2.sourceforge.net/files/%{pkgname}-%{version}.tar.gz
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+
+License:	GPLv2+
+Group:		Restricted Software
+
+Requires(post):		self-build-setup >= 0.9.9
+
+Requires(post):		SDL-devel
+%if %{?_dist_release} == "vl5" || %{?_dist_release} == "vl6"
+Requires(post):		libXt-devel
+Requires(post):		libXv-devel
+%endif
+%if %{?_dist_release} == "vl4"
+Requires(post):		XOrg-devel
+%endif
+
+BuildArch:	noarch
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video
+streams. It is released under the terms of the GPL license.
+
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+libmpeg2 はmpeg-1/2ビデオストリームをデコードするための
+フリーなライブラリです.
+
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version} の rpm
+パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec "%{sourceurl0}" 60000
+/usr/lib/rpm/pre-allocate-rpm.sh %{pkgname}-%{version}-%{release} \
+                                 %{pkgname}-devel-%{version}-%{release} \
+                                 mpeg2dec-%{version}-%{release}
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}/*
+
+%changelog
+* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.5.1-4
+- renamed %%{Source0} to libmpeg2-vl.spec
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.5.1-3
+- added BuildArch: noarch
+- avoided to execute self-build-rpm.sh on RPM transaction
+  - moved %%post actions to %%posttrans
+
+* Fri Jan 23 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.5.1-2
+- initial bulid for self-build

+ 83 - 0
nonfree/self-build-mplayer-codecs/mplayer-codecs-vl.spec

@@ -0,0 +1,83 @@
+%define name	mplayer-codecs
+%define version	20071007
+%define release 6%{?_dist_release}
+
+Summary:	Binary codecs used with MPlayer
+Summary(ja): 	MPlayer で使用するバイナリ Codec
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+%ifarch %{ix86}
+Source0:	ftp://ftp2.mplayerhq.hu/MPlayer/releases/codecs/essential-%{version}.tar.bz2
+%endif
+%ifarch ppc
+Source0:	ftp://ftp2.mplayerhq.hu/MPlayer/releases/codecs/essential-ppc-%{version}.tar.bz2
+%endif
+%ifarch x86_64
+Source0:	ftp://ftp2.mplayerhq.hu/MPlayer/releases/codecs/essential-amd64-%{version}.tar.bz2
+%endif
+
+License:	GPL
+Group:		Applications/Multimedia
+URL:		http://www.mplayerhq.hu/
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+%description
+Binary codec packages add support for codecs that are not yet implemented
+natively, like newer RealVideo variants and a lot of uncommon formats.
+Note that they are not necessary to play most common formats like DVDs,
+MPEG-1/2/4, etc.
+
+%description -l ja
+バイナリ Codec パッケージは、最新の RealVideo やその他の特殊なフォーマット
+のような mplayer 単体ではまだ対応していないフォーマットを再生できるように
+します。
+ただし DVD や MPEG-1/2/4 のように一般的なフォーマットを再生する場合には、
+このパッケージは必要ありません。
+
+%prep
+%ifarch %{ix86}
+%setup -q -n essential-%{version}
+%endif
+%ifarch ppc
+%setup -q -n essential-ppc-%{version}
+%endif
+%ifarch x86_64
+%setup -q -n essential-amd64-%{version}
+%endif
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d -m 755 ${RPM_BUILD_ROOT}%{_libdir}/codecs
+%{__install} -m 644 * ${RPM_BUILD_ROOT}%{_libdir}/codecs
+
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+
+%files
+%defattr(-,root,root)
+%{_libdir}/codecs
+
+%changelog
+* Sun Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 20071007-6
+- change release to sync with self-build-mplayer-codecs
+
+* Sun Jun 07 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-5
+- added Requires: libstdc++3
+
+* Sun Jun 07 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-4
+- change release to sync with self-build-mplayer-codecs
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-3
+- change release to sync with self-build-mplayer-codecs
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-2
+- spec in utf8
+- fixed %%release for new versioning policy in mplayer-codecs.spec
+- dropped ttfontdir variable in mplayer-codecs.spec
+
+* Fri Jan 18 2008 Kazutaka HARADA <Kazutaka HARADA> 20071007-0vl1
+- initial build for Vine Linux

+ 141 - 0
nonfree/self-build-mplayer-codecs/self-build-mplayer-codecs-vl.spec

@@ -0,0 +1,141 @@
+%define pkgname mplayer-codecs
+%define name    self-build-%{pkgname}
+%define version 20071007
+%define release 6%{?_dist_release}
+
+%ifarch %{ix86}
+%define source0path MPlayer/releases/codecs/essential-%{version}.tar.bz2
+%endif
+%ifarch ppc
+%define source0path MPlayer/releases/codecs/essential-ppc-%{version}.tar.bz2
+%endif
+%ifarch x86_64
+%define source0path MPlayer/releases/codecs/essential-amd64-%{version}.tar.bz2
+%endif
+
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+
+License:	GPL
+Group:		Restricted Software
+
+Requires(post):		self-build-setup >= 0.9.9
+Requires:		libstdc++3
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+Binary codecs for MPlayer.
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+MPlayer 用のバイナリ Codec です。
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version}
+の rpm パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+%prep
+[ "%{version}-%{release}" != $(rpm -q --queryformat "%%{version}-%%{release}\n" --specfile %{SOURCE0} | tail -1) ] && exit 1
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec \
+  http://www{1,2,3,4,5,7,8}.mplayerhq.hu/%{source0path} 2250
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}/*
+
+%changelog
+* Sun Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 20071007-6
+- renamed %%{Source0} to mplayer-codecs-vl.spec
+
+* Sun Jun 07 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-5
+- added Requires: libstdc++3
+
+* Sun Jun 07 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-4
+- dropped BuildArch: noarch
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-3
+- added BuildArch: noarch
+- avoided to execute self-build-rpm.sh on RPM transaction
+  - moved %%post actions to %%posttrans
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-2
+- spec in utf8
+- fixed %%release for new versioning policy in mplayer-codecs.spec
+- dropped ttfontdir variable in mplayer-codecs.spec
+
+* Sun Jun 08 2008 Atsushi SHICHI <ats777@gmail.com> 20071007-1
+- build with new versioning policy.
+- fix <BTS:VineLinux:603>.
+  - add ">= 0.7-1" to "PreReq: self-build-setup".
+  - add mirror URLs to self-build-rpm.sh.
+
+* Sun Mar 2 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 20071007-0vl2
+- change source download URL. (see <BTS:VineLinux:603>)
+
+* Fri Jan 18 2008 Kazutaka HARADA <Kazutaka HARADA> 20071007-0vl1
+- initial build for Vine Linux.

+ 142 - 0
nonfree/self-build-xvidcore/self-build-xvidcore-vl.spec

@@ -0,0 +1,142 @@
+%define pkgname xvidcore
+%define name	self-build-%{pkgname}
+%define version 1.2.1
+%define release	4%{?_dist_release}
+
+%define sourceurl0	http://downloads.xvid.org/downloads/%{pkgname}-%{version}.tar.bz2
+
+Summary:	Package to automatically build %{pkgname} rpm package
+Summary(ja): 	%{pkgname} の rpm パッケージを自動作成するパッケージ
+Name:		%{name}
+Version:	%{version}
+Release: 	%{release}
+Source0:	%{pkgname}-vl.spec
+
+License:	GPL
+Group:		Restricted Software
+
+Requires(post):		self-build-setup >= 0.9.9
+
+# (build)requies of target package.
+%ifarch %{ix86}
+Requires(post):		nasm
+%endif
+%ifarch x86_64
+Requires(post):		yasm
+%endif
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+
+Packager:	munepi
+
+%description
+xvidcore is the free reimplementation of the OpenDivX video codec.
+
+If you install this package, it automaticaly downloads source
+code ,compile it, and create rpm packages of %{pkgname}-%{version}.
+And the created rpm packages are automatically installed
+if installation is executed by apt-get command or synaptic
+package manager.
+
+[Note]
+This package requires many other packages to compile
+targetsoftware. So it consume more disk space than usual.
+Also installation takes logner time because of compilation.
+(This will take a few minutes to quarter or half of an hour,
+depends on building environment)
+
+[About self-build package]
+For some kind of software, distributing of binary package
+may viorate the patent or law. Therefore we chose self-build
+packge, create binary package on your machine, for such kind
+of softwares instead of distributing binary package.
+
+Please obey the national law when you use the created binary
+packages. And if you want to use the softwares using patented 
+thechnology, it may be required to get a permission, make an 
+agreement or purchas a license. Please consider it with your
+purpose or way of use and take appropriate action.
+
+%description -l ja
+xvidcore は OpenDivX プロジェクトによるビデオコーデックを
+オープンソースで開発継続されているものです。
+
+このパッケージをインストールすると、自動的にソースコードを
+ダウンロードしてコンパイルし、%{pkgname}-%{version} の rpm
+パッケージを作成します。
+また apt-get コマンドや synaptic パッケージマネージャから実行
+した場合は、作成された rpm パッケージのインストールも自動的に
+行います。
+
+[注意]
+コンパイルに必要な多くの関連パッケージを要求するので通常より
+ディスクの領域を多く消費します。
+またインストール時にコンパイルを行うため、通常より時間がかか
+る場合があります。(環境にもよりますが数分から数十分程度)
+
+[self-build パッケージについて]
+ソフトウェアによってはバイナリパッケージの配布が特許や法律に
+違反する可能性があるものがあります。その為、このような問題が
+懸念されるソフトウェアについてはバイナリパッケージを直接配布
+せずに、ユーザの環境でバイナリを作成する self-build パッケー
+ジという方法を採っています。
+
+作成されたバイナリパッケージの利用にあたっては、各ソフトウェ
+アのライセンス、および利用する国の各種法令に従ってください。
+また特許に関連するソフトウェアの場合、利用許諾や契約、ライ
+センスの購入などが必要となる場合がありますので、利用する目的
+や形態に応じて各自で判断し適切な対応を取ってください。
+
+
+%prep
+[ "%{version}-%{release}" != $(rpm -q --queryformat "%%{version}-%%{release}\n" --specfile %{SOURCE0} | tail -1) ] && exit 1
+
+%install
+%{__rm} -rf ${RPM_BUILD_ROOT}
+%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+%{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
+
+%clean
+%{__rm} -rf ${RPM_BUILD_ROOT}
+
+%posttrans
+/usr/lib/rpm/self-build-rpm.sh %{name} %{pkgname}-vl.spec "%{sourceurl0}" 10000
+/usr/lib/rpm/pre-allocate-rpm.sh %{pkgname}-%{version}-%{release} \
+                                 %{pkgname}-devel-%{version}-%{release}
+
+%files
+%defattr(-,root,root)
+%{_datadir}/%{name}
+
+%changelog
+* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.2.1-4
+- renamed %%{Source0} to xvidcore-vl.spec
+
+* Fri Jun 05 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.1-3
+- dropped BuildArch: noarch
+  (because if BuildArch: noarch, %%ifarch is invalid)
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.1-2
+- added BuildArch: noarch
+- avoided to execute self-build-rpm.sh on RPM transaction
+  - moved %%post actions to %%posttrans
+
+* Sun Jan 11 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.1-1
+- new upstream release
+- dropped xvidcore-1.1.3_bitstream.patch
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.1.3-3
+- spec in utf8
+
+* Sun May 18 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.1.3-2
+- run pre-allocate-rpm.sh in %%post
+- set PreReq: self-build-setup >= 0.8
+
+* Fri Apr 11 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.1.3-1vl4
+- build with new versioning policy
+- apply xvidcore-1.1.3_bitstream.patch
+
+* Tue Feb 19 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.1.3-0vl1
+- initial build for Vine Linux 4.2
+
+### end of file

+ 100 - 0
nonfree/self-build-xvidcore/xvidcore-vl.spec

@@ -0,0 +1,100 @@
+%define name xvidcore
+%define version 1.2.1
+%define release 4%{?_dist_release}
+
+Summary: Free reimplementation of the OpenDivX video codec
+Name: %{name}
+Version: %{version}
+Release: %{release}
+Source: http://downloads.xvid.org/downloads/%{name}-%{version}.tar.bz2
+License: XVID (GPL with specific restrictions)
+URL: http://www.xvid.org/
+Group: System Environment/Libraries
+
+#Requires: 
+%ifarch %{ix86}
+BuildRequires: nasm
+%endif
+%ifarch x86_64
+BuildRequires: yasm
+%endif
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+
+%description
+Free reimplementation of the OpenDivX video codec. You can play OpenDivX
+and DivX4 videos with it, as well as encode compatible files.
+
+%package devel
+Summary: Development files for the XviD video codec
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+This package contains header files, static library and API
+documentation for the XviD video codec.
+
+%prep
+%setup -q -n %{name}
+
+%build
+cd build/generic
+
+%configure 
+make %{?_smp_mflags} 
+
+%install
+rm -rf %{buildroot}
+cd build/generic
+%makeinstall
+rm $RPM_BUILD_ROOT%{_libdir}/libxvidcore.a
+cd $RPM_BUILD_ROOT%{_libdir}
+chmod 755 libxvidcore.so*
+/sbin/ldconfig -n .
+ln -s libxvidcore.so.? libxvidcore.so
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc LICENSE README AUTHORS ChangeLog TODO
+%{_libdir}/libxvidcore.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%doc CodingStyle examples/
+%{_includedir}/xvid.h
+%{_libdir}/libxvidcore.so
+
+%changelog
+* Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.2.1-4
+- change release to sync with self-build-xvidcore
+
+* Fri Jun 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.1-3
+- change release to sync with self-build-xvidcore
+
+* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.1-2
+- change release to sync with self-build-xvidcore
+
+* Sun Jan 11 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.1-1
+- new upstream release
+- dropped xvidcore-1.1.3_bitstream.patch
+
+* Sun Nov 02 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.1.3-3
+- spec in utf8
+
+* Sun May 18 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.1.3-2
+- release +1 to sync with self-build-xvidcore
+
+* Fri Apr 11 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.1.3-1vl4
+- build with new versioning policy
+- apply xvidcore-1.1.3_bitstream.patch
+
+* Tue Feb 19 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.1.3-0vl1
+- initial build for Vine Linux 4.2
+
+### end of file