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.
media-video/bdsup2sub++: new package, C++ port of BDSup2Sub
Package-Manager: portage-2.2.27
- Loading branch information
Showing
3 changed files
with
54 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST bdsup2sub++-1.0.2.tar.gz 301413 SHA256 89b1a99313fe2f1a3ff101c64a2f85e7f92c81fde41a212a3d854caf49b933c5 SHA512 181cd241588d0fe9217b4534c377af745ff04bcf1af5fbff44c821ec8e45063bb5df0bef0b5d8ba6a9f24740387959487c6e2d3964bfefd935a098ad525b8102 WHIRLPOOL b5a81ea1bfca02bc8ecf7fb35f47fd9507bd3b078bfd7241bd9ae176e7c7acf97c9478654f1c1e50b9ee1474d14b6c63d7184e1b66d9b432f0f44f771570c0e6 |
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,33 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit qmake-utils | ||
|
||
MY_PN="BDSup2SubPlusPlus" | ||
DESCRIPTION="C++ port of BDSup2Sub" | ||
HOMEPAGE="https://github.com/amichaelt/BDSup2SubPlusPlus" | ||
SRC_URI="https://github.com/amichaelt/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND=" | ||
x11-libs/libqxt | ||
dev-qt/qtcore:4 | ||
dev-qt/qtgui:4 | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
S="${WORKDIR}/${MY_PN}-${PV}/src" | ||
|
||
src_configure() { | ||
eqmake4 ${PN}.pro | ||
} | ||
|
||
src_install() { | ||
dobin ${PN} | ||
} |
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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Louis Sautier</name> | ||
<description>Proxied maintainer; set to assignee in all bugs</description> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Proxy Maintainers</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">amichaelt/BDSup2SubPlusPlus</remote-id> | ||
<bugs-to>https://github.com/amichaelt/BDSup2SubPlusPlus/issues</bugs-to> | ||
</upstream> | ||
<longdescription lang="en"> | ||
BDSup2Sub++ (c) 2012 is a port of the original BDSup2Sub (c) 2009 by 0xdeadbeef and incorporating enhancements from Miklos Juhasz. It is a subtitle conversion tool for image based stream formats with scaling capabilities and some other nice features. | ||
</longdescription> | ||
</pkgmetadata> |