Changeset b7ab24e8bc1b8c1367e99617be9799f3062b98f2
- Timestamp:
- 28/06/03 02:29:13
(5 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1056760153 +0000
- git-parent:
[1f4f2234474ef96706c1b2495c1301f1984596de]
- git-author:
- Sam Hocevar <sam@videolan.org> 1056760153 +0000
- Message:
- vlc.ebuild:
+ Apply the same changes to configure as to configure.ac.
+ Fix autotools timestamps so that the build does not trigger useless
autoconf and automake runs. Our snapshots are correctly bootstrapped
and do not need extra fiddling.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rabd56a2 |
rb7ab24e |
|
| 3 | 3 | ############################################################################### |
|---|
| 4 | 4 | # Copyright (C) 2003 VideoLAN |
|---|
| 5 | | # $Id: vlc.ebuild,v 1.9 2003/06/23 00:18:50 hartman Exp $ |
|---|
| | 5 | # $Id: vlc.ebuild,v 1.10 2003/06/28 00:29:13 sam Exp $ |
|---|
| 6 | 6 | # |
|---|
| 7 | 7 | # Authors: Derk-Jan Hartman <thedj at users.sf.net> |
|---|
| … | … | |
| 102 | 102 | configure.ac.orig > configure.ac |
|---|
| 103 | 103 | |
|---|
| | 104 | cp configure configure.orig |
|---|
| | 105 | sed "s:-lkfile::" \ |
|---|
| | 106 | configure.orig > configure |
|---|
| | 107 | |
|---|
| 104 | 108 | cd ${S}/modules/gui/kde |
|---|
| 105 | 109 | cp interface.h interface.h.orig |
|---|
| … | … | |
| 219 | 223 | export WANT_AUTOMAKE_1_6=1 |
|---|
| 220 | 224 | |
|---|
| | 225 | # Avoid timestamp skews with autotools |
|---|
| | 226 | touch configure.ac |
|---|
| | 227 | touch aclocal.m4 |
|---|
| | 228 | touch configure |
|---|
| | 229 | touch config.h.in |
|---|
| | 230 | touch `find . -name Makefile.in` |
|---|
| | 231 | |
|---|
| 221 | 232 | myconf="${myconf} --enable-ffmpeg --with-ffmpeg-tree=${SFFMPEG} \ |
|---|
| 222 | 233 | --enable-libmpeg2 --with-libmpeg2-tree=${SLIBMPEG2} \ |
|---|