Skip to content

Commit abbca71

Browse files
committed
initial commit containing libcec v0.1. see README for details.
0 parents  commit abbca71

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+12644
-0
lines changed

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
.project
2+
.cproject
3+
4+
aclocal.m4
5+
autom4te.cache
6+
config.guess
7+
config.log
8+
config.status
9+
config.sub
10+
depcomp
11+
configure
12+
install-sh
13+
INSTALL
14+
libtool
15+
ltmain.sh
16+
Makefile
17+
Makefile.in
18+
missing
19+
20+
libcec.dll
21+
libcec.exp
22+
libcec.ilk
23+
libcec.lib
24+
libcec.pdb
25+
testclient.exe
26+
testclient.ilk
27+
testclient.pdb
28+
29+
project/Debug/
30+
project/ipch/
31+
project/libcec.sdf
32+
project/libcec.suo
33+
project/libcec.vcxproj.user
34+
project/testclient.vcxproj.user
35+
36+
src/lib/.deps
37+
src/lib/.libs
38+
src/lib/*.a
39+
src/lib/*.la
40+
src/lib/*.lo
41+
src/lib/*.o
42+
src/lib/*.P
43+
src/lib/libcec.pc
44+
src/lib/Makefile
45+
src/lib/Makefile.in
46+
47+
src/lib/util/*.d
48+
src/lib/util/*.o
49+
src/lib/util/*.a
50+
src/lib/util/*.P
51+
52+
src/testclient/.deps
53+
src/testclient/.libs
54+
src/testclient/cec-client
55+
src/testclient/*.o
56+

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Lars Op den Kamp <[email protected]>
2+
Bob van Loosen <[email protected]>
3+
Martin Ellis <[email protected]>

COPYING

+706
Large diffs are not rendered by default.

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
libcec (0.1-1) unstable; urgency=low
2+
3+
* Initial release v0.1
4+
5+
-- Lars Op den Kamp <[email protected]> Wed, 28 Sep 2011 21:42:48 +0200

Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SUBDIRS = src/lib src/testclient

NEWS

Whitespace-only changes.

README

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
For Linux:
2+
autoreconf -vif
3+
./configure --prefix=/usr
4+
make
5+
sudo make install
6+
7+
For Windows:
8+
Open /project/libcec.sln with Visual C++ 2010 or Visual Studio 2010.
9+
Build the project.
10+
Copy libcec.dll and libpthread.dll to your desired destination.
11+
12+
Test the device:
13+
Run "cec-client -h" to display the options of the test client.
14+
15+
For developers:
16+
See /include/CECExports.h

configure.ac

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
AC_INIT([libcec], 0:1:0)
2+
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
3+
4+
AC_PROG_CXX
5+
AC_PROG_LIBTOOL
6+
7+
AC_CHECK_LIB([rt], [main],, AC_MSG_ERROR("required library 'rt' is missing"))
8+
AC_CHECK_LIB([pthread], [main],, AC_MSG_ERROR("required library 'pthread' is missing"))
9+
AC_CHECK_LIB([udev], [main],, AC_MSG_ERROR("required library 'udev' is missing"))
10+
11+
AC_CONFIG_FILES([src/lib/libcec.pc])
12+
AC_OUTPUT([Makefile src/lib/Makefile src/testclient/Makefile])

debian/changelog

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
libcec (0.1-1) unstable; urgency=low
2+
3+
* Initial release v0.1
4+
5+
-- Pulse-Eight Packaging <[email protected]> Wed, 28 Sep 2011 23:55:48 +0200

debian/compat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7

debian/control

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Source: libcec
2+
Section: video
3+
Priority: extra
4+
Maintainer: Lars Op den Kamp <[email protected]>
5+
Build-Depends: debhelper (>= 7), libudev-dev, mime-support,
6+
locales, gawk, autotools-dev, autoconf, automake,
7+
Standards-Version: 3.8.3
8+
Homepage: http://www.pulse-eight.net/
9+
10+
Package: libcec
11+
Architecture: any
12+
Depends: ${shlibs:Depends}, ${misc:Depends}
13+
Description: CEC interface library
14+
CEC interface library.

0 commit comments

Comments
 (0)