Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/xvid/
Date: Sun, 30 Dec 2018 20:19:56
Message-Id: 1546201178.47835de07f5543284cff27313c8284f5c923b2cb.asturm@gentoo
1 commit: 47835de07f5543284cff27313c8284f5c923b2cb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 30 20:19:38 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 30 20:19:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47835de0
7
8 media-libs/xvid: Drop old
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/xvid/Manifest | 2 --
14 media-libs/xvid/xvid-1.3.3.ebuild | 72 ---------------------------------------
15 media-libs/xvid/xvid-1.3.4.ebuild | 72 ---------------------------------------
16 3 files changed, 146 deletions(-)
17
18 diff --git a/media-libs/xvid/Manifest b/media-libs/xvid/Manifest
19 index 28c489d060d..fc856890cf7 100644
20 --- a/media-libs/xvid/Manifest
21 +++ b/media-libs/xvid/Manifest
22 @@ -1,3 +1 @@
23 -DIST xvidcore-1.3.3.tar.bz2 695279 BLAKE2B 7e24910d51e6e8d9a725aba86a83a59556e85bb953c683eef1d74bd10bf427d22f1d66e86c3a5f6ff73e3b16427af274b51447d1e336968415c252699965bd57 SHA512 e2178ee946fa057cf465da855b702e74fbab04347020ab7900850c07dfcd5202003fcd579fc404e0a567807285607ed4bcd14dc4c074ea19123143f03af80f09
24 -DIST xvidcore-1.3.4.tar.bz2 697808 BLAKE2B 71ee4e6e73e37055482f4b02859467b2dde0f687b0652b36169b1b77378cf5db77fa805ca932cb4a0772b1abe46f3d4ecb05302c23b951d7e8dfa6888cb53b4f SHA512 09c0dca898ad8ba32161d979dea66730c235d9649e93e5053f0e0f0d02f8996f0f85d629728bff16d3253b71e0435809360e6cf4d72801e63c061f2a0b0dbe7d
25 DIST xvidcore-1.3.5.tar.bz2 698846 BLAKE2B c65c90a2a51d993af65becd760364b495ca1714f888c640b577ee3cb509afc5dbe56d1f536aa710a5322106ca65bed4ad162ad97440e9c14deeabbcbe00984b5 SHA512 3297243400ce9ed2d0083559ee15fdfa422e585114c4e92c72fe702f43fea4af9fe4e9e794630959c220222379fa329452c4163a395f4ba1998c9be03a2e9441
26
27 diff --git a/media-libs/xvid/xvid-1.3.3.ebuild b/media-libs/xvid/xvid-1.3.3.ebuild
28 deleted file mode 100644
29 index c042d207346..00000000000
30 --- a/media-libs/xvid/xvid-1.3.3.ebuild
31 +++ /dev/null
32 @@ -1,72 +0,0 @@
33 -# Copyright 1999-2014 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=5
37 -inherit flag-o-matic multilib multilib-minimal
38 -
39 -MY_PN=${PN}core
40 -MY_P=${MY_PN}-${PV}
41 -
42 -DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution"
43 -HOMEPAGE="http://www.xvid.org/"
44 -SRC_URI="http://downloads.xvid.org/downloads/${MY_P}.tar.bz2"
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
49 -IUSE="examples elibc_FreeBSD +threads pic"
50 -
51 -NASM=">=dev-lang/nasm-2"
52 -YASM=">=dev-lang/yasm-1"
53 -
54 -DEPEND="sys-apps/grep
55 - amd64? ( || ( ${YASM} ${NASM} ) )
56 - amd64-fbsd? ( ${NASM} )
57 - x86? ( || ( ${YASM} ${NASM} ) )
58 - x86-fbsd? ( ${NASM} )
59 - x86-macos? ( ${NASM} )
60 - x64-macos? ( ${NASM} )"
61 -RDEPEND=""
62 -
63 -S=${WORKDIR}/${MY_PN}/build/generic
64 -
65 -src_prepare() {
66 - # make build verbose
67 - sed \
68 - -e 's/@$(CC)/$(CC)/' \
69 - -e 's/@$(AS)/$(AS)/' \
70 - -e 's/@$(RM)/$(RM)/' \
71 - -e 's/@$(INSTALL)/$(INSTALL)/' \
72 - -e 's/@cd/cd/' \
73 - -i Makefile || die
74 - # Since only the build system is in $S, this will only copy it but not the
75 - # entire sources.
76 - multilib_copy_sources
77 -}
78 -
79 -multilib_src_configure() {
80 - use sparc && append-cflags -mno-vis #357149
81 - use elibc_FreeBSD && export ac_cv_prog_ac_yasm=no #477736
82 -
83 - local myconf
84 - if use pic || [[ ${ABI} == "x32" ]] ; then #421841
85 - myconf="--disable-assembly"
86 - fi
87 -
88 - econf \
89 - $(use_enable threads pthread) \
90 - ${myconf}
91 -}
92 -
93 -#multilib_src_install() {
94 -# emake DESTDIR="${D}" install
95 -#}
96 -
97 -multilib_src_install_all() {
98 - dodoc "${S}"/../../{AUTHORS,ChangeLog*,CodingStyle,README,TODO}
99 -
100 - if use examples; then
101 - insinto /usr/share/${PN}
102 - doins -r "${S}"/../../examples
103 - fi
104 -}
105
106 diff --git a/media-libs/xvid/xvid-1.3.4.ebuild b/media-libs/xvid/xvid-1.3.4.ebuild
107 deleted file mode 100644
108 index 2611b93fb18..00000000000
109 --- a/media-libs/xvid/xvid-1.3.4.ebuild
110 +++ /dev/null
111 @@ -1,72 +0,0 @@
112 -# Copyright 1999-2017 Gentoo Foundation
113 -# Distributed under the terms of the GNU General Public License v2
114 -
115 -EAPI=5
116 -inherit flag-o-matic multilib multilib-minimal
117 -
118 -MY_PN=${PN}core
119 -MY_P=${MY_PN}-${PV}
120 -
121 -DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution"
122 -HOMEPAGE="http://www.xvid.org/"
123 -SRC_URI="http://downloads.xvid.org/downloads/${MY_P}.tar.bz2"
124 -
125 -LICENSE="GPL-2"
126 -SLOT="0"
127 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
128 -IUSE="examples elibc_FreeBSD +threads pic"
129 -
130 -NASM=">=dev-lang/nasm-2"
131 -YASM=">=dev-lang/yasm-1"
132 -
133 -DEPEND="sys-apps/grep
134 - amd64? ( || ( ${YASM} ${NASM} ) )
135 - amd64-fbsd? ( ${NASM} )
136 - x86? ( || ( ${YASM} ${NASM} ) )
137 - x86-fbsd? ( ${NASM} )
138 - x86-macos? ( ${NASM} )
139 - x64-macos? ( ${NASM} )"
140 -RDEPEND=""
141 -
142 -S=${WORKDIR}/${MY_PN}/build/generic
143 -
144 -src_prepare() {
145 - # make build verbose
146 - sed \
147 - -e 's/@$(CC)/$(CC)/' \
148 - -e 's/@$(AS)/$(AS)/' \
149 - -e 's/@$(RM)/$(RM)/' \
150 - -e 's/@$(INSTALL)/$(INSTALL)/' \
151 - -e 's/@cd/cd/' \
152 - -i Makefile || die
153 - # Since only the build system is in $S, this will only copy it but not the
154 - # entire sources.
155 - multilib_copy_sources
156 -}
157 -
158 -multilib_src_configure() {
159 - use sparc && append-cflags -mno-vis #357149
160 - use elibc_FreeBSD && export ac_cv_prog_ac_yasm=no #477736
161 -
162 - local myconf
163 - if use pic || [[ ${ABI} == "x32" ]] ; then #421841
164 - myconf="--disable-assembly"
165 - fi
166 -
167 - econf \
168 - $(use_enable threads pthread) \
169 - ${myconf}
170 -}
171 -
172 -#multilib_src_install() {
173 -# emake DESTDIR="${D}" install
174 -#}
175 -
176 -multilib_src_install_all() {
177 - dodoc "${S}"/../../{AUTHORS,ChangeLog*,CodingStyle,README,TODO}
178 -
179 - if use examples; then
180 - insinto /usr/share/${PN}
181 - doins -r "${S}"/../../examples
182 - fi
183 -}