Skip to content

Commit 4b41f29

Browse files
committed
Update for v0.4.0
Signed-off-by: Benn Snyder <[email protected]>
1 parent 1806da7 commit 4b41f29

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ set(PYTHON_EXECUTABLE "python2")
4040
PROJECT(libfreenect)
4141

4242
set (PROJECT_VER_MAJOR 0)
43-
set (PROJECT_VER_MINOR 3)
43+
set (PROJECT_VER_MINOR 4)
4444
set (PROJECT_VER_PATCH 0)
4545
set (PROJECT_VER
4646
"${PROJECT_VER_MAJOR}.${PROJECT_VER_MINOR}.${PROJECT_VER_PATCH}")

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ Audio is a work in progress.
1616

1717
To build libfreenect, you'll need
1818

19-
- [libusb](http://libusb.info/) >= 1.0.13
20-
- [CMake](http://www.cmake.org/) >= 2.6
19+
- [libusb](http://libusb.info) >= 1.0.13
20+
- [CMake](http://cmake.org) >= 2.6
21+
- [python](http://python.org) == 2.* (only if BUILD_AUDIO or BUILD_PYTHON)
2122

2223
For the examples, you'll need
2324

@@ -26,13 +27,13 @@ For the examples, you'll need
2627
- [pthreads-win32](http://sourceforge.net/projects/pthreads4w/) (Windows)
2728

2829

29-
## Fetch & Build <a name="fetch-build"></a>
30+
## <a name="fetch-build"></a>Fetch & Build
3031

3132
git clone https://github.com/OpenKinect/libfreenect
3233
cd libfreenect
3334
mkdir build
3435
cd build
35-
cmake ..
36+
cmake -L ..
3637
make
3738

3839
# if you don't have `make` or don't want color output
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
EBUILD libfreenect-9999.ebuild 2240 SHA256 a08047d60a53061516df2a185361ff3d6f7b126f305786cdc95977038c981255 SHA512 4bcb2bcab1e6c396d33a767d13200c5e2a15f4387d2898ec28c36edd15baf15a02b1ed3c9f356c86a0b69ccd68f238b7b9aa9aaf4b19a6b6673ac6e3823b8d89 WHIRLPOOL 11274f350181cd8d550dc4161d6de751a401665e36449bc93701183c0636f0932b3dcc84ff55a2ebf52e5b7c1713c475649713a5416e7563058f7da0c0b42d64
1+
EBUILD libfreenect-9999.ebuild 2121 SHA256 223618ff82ec043e8f65d977bc0297a1ba71d25658125b2f3aabbaaf51b361ac SHA512 2e6f0e484389b338b32a8ea8cdec652c3d03bcda106cd98484cdbf084ebd60497c5cb63dd1cbe0fb4566a2fc2efe2e9bc4053532dd5f7655249cc0803b84a090 WHIRLPOOL b0ea6afdf4c270113dda55684565a341c61c4568baff8457a66d74ccfa9e343cb73713247cbf12bb92f1f828524053ab89343bfc96feeddb629a279d2e1e41bf

platform/linux/portage/dev-libs/libfreenect/libfreenect-9999.ebuild

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ RDEPEND="${COMMON_DEP}"
2828
DEPEND= "${COMMON_DEP}
2929
dev-util/cmake
3030
virtual/pkgconfig
31+
audio? ( dev-lang/python-2* )
3132
doc? ( app-doc/doxygen )
3233
python? ( dev-python/cython )"
3334

@@ -49,10 +50,6 @@ src_configure() {
4950

5051
src_install() {
5152
cmake-utils_src_install
52-
# Rename record example so it does not collide with xawtv
53-
if use examples; then
54-
mv "${D}"/usr/bin/record "${D}"/usr/bin/frecord || die
55-
fi
5653

5754
# udev rules
5855
insinto /lib/udev/rules.d/

0 commit comments

Comments
 (0)