forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.20
- Loading branch information
Lars Wendler
committed
Aug 10, 2015
1 parent
279cbb1
commit 9e1da34
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST h264enc-10.4.1.tar.gz 138598 SHA256 3d0f280f8ab28999964b8c4c8b0d02cce9303a3c37b36d5e4ea3e0633a9cb711 SHA512 34b7177582931b0e291bf97eee27c8f2c8f5c83539875eebdb8f30f9dfed3eb0f03830130d49ae5c9c80477c7a90b80e95b27fc5855db1ec18894a813f1656f4 WHIRLPOOL a47498d94ff1d2bff90bbb4f1941a00930ea82ce7bf56e4b1c9465c6c1263867ad28cc56dd397b52cd317873467bd7acc161ab47909589114c32c0cc824a41e1 | ||
DIST h264enc-9.4.0.tar.gz 120198 SHA256 f87b36cec4d6ef90a21e518773be0a075ad13bf55456c0d6c06fedb9e2990ec0 | ||
DIST h264enc-9.4.1.tar.gz 120268 SHA256 a7f53c278b0a3b62c84f1d9a16612bdcd3f63062cb1bf46d6983ba36c81b57bb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
DESCRIPTION="Script to encode H.264/AVC/MPEG-4 Part 10 formats" | ||
HOMEPAGE="http://h264enc.sourceforge.net/" | ||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="aac dvd flac lame matroska mp4 ogm vorbis" | ||
|
||
RDEPEND=" | ||
media-video/mplayer[encode,x264] | ||
sys-apps/coreutils | ||
sys-apps/pv | ||
sys-devel/bc | ||
sys-process/time | ||
aac? ( | ||
media-libs/faac | ||
media-sound/aacplusenc ) | ||
dvd? ( media-video/lsdvd ) | ||
flac? ( media-libs/flac ) | ||
lame? ( media-sound/lame ) | ||
matroska? ( media-video/mkvtoolnix ) | ||
mp4? ( >=media-video/gpac-0.4.5[a52] ) | ||
ogm? ( media-sound/ogmtools ) | ||
vorbis? ( media-sound/vorbis-tools )" | ||
DEPEND="" | ||
|
||
src_install() { | ||
dobin ${PN} | ||
doman man/${PN}.1 | ||
dodoc doc/* | ||
docinto matrices | ||
dodoc matrices/* | ||
} |