mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
o SHLIB version bump: a trick to help detect the problem that ffmpeg will not build with the previous ffmpeg library installed PR: 69210 [1], 74225 [2] Submitted by: ahze [1], Frank Mayhar <frank@exit.com> [2]
26 lines
481 B
Bash
26 lines
481 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/multimedia/ffmpeg-devel/files/Attic/ffserver.sh,v 1.1 2004-12-05 18:12:41 lioux Exp $
|
|
#
|
|
|
|
# PROVIDE: ffserver
|
|
# REQUIRE: NETWORKING
|
|
# KEYWORD: FreeBSD shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable ffserver:
|
|
#
|
|
#ffserver_enable="YES"
|
|
#
|
|
ffserver_enable="NO"
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=ffserver
|
|
rcvar=`set_rcvar`
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
required_files=%%PREFIX%%/etc/ffserver.conf
|
|
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|