blob: 7b93594ccf04067cecc8f38f44b387f615ceb5d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vcdgear/vcdgear-1.76-r2.ebuild,v 1.7 2012/09/24 00:46:08 vapier Exp $
EAPI=2
QA_PRESTRIPPED=/opt/vcdgear/vcdgear
QA_FLAGS_IGNORED=/opt/vcdgear/vcdgear
STAMP=040415
DESCRIPTION="extract MPEG streams from CD images, convert VCD files to MPEG, correct MPEG errors, and more"
HOMEPAGE="http://www.vcdgear.com/"
SRC_URI="http://www.vcdgear.com/files/vcdgear${PV//.}-${STAMP}_linux.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND="virtual/libstdc++:3.3"
DEPEND=""
S=${WORKDIR}/${PN}
src_install() {
insinto /opt/vcdgear
doins -r * || die "doins"
fperms a+rx /opt/vcdgear/vcdgear
dodir /opt/bin
dosym /opt/vcdgear/vcdgear /opt/bin/vcdgear
}
|