Written by Pham Ngoc Hai, on 20-10-2009 11:31
It has been sometime since I played with red5, many people asked me about my ebuild's errors :D.
I recently work with AS3 and Flex, so here comes the ebuild again.
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
MY_P=${P/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Open Source Flash Server written in Java"
HOMEPAGE="http://osflash.org/red5"
SRC_URI="http://www.red5.org/downloads/0_8/red5-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="1"
KEYWORDS="~amd64 ~x86"
IUSE="doc source"
DEPEND=">=virtual/jdk-1.5
>=dev-java/ant-core-1.5"
RDEPEND=">=virtual/jdk-1.5"
RED5_HOME=/opt/red5
pkg_setup() {
enewgroup red5
enewuser red5 -1 -1 ${RED5_HOME} red5
}
src_install() {
newinitd "${FILESDIR}"/red5.initd red5
newconfd "${FILESDIR}"/red5.confd red5
doenvd "${FILESDIR}"/21red5
if use doc ; then
dodoc doc/*
else
rm -rf doc
fi
if ! use source ; then
rm src.zip
fi
dodir ${RED5_HOME}
cp -rp * ${D}${RED5_HOME}
fowners -R red5:red5 ${RED5_HOME}
fperms 0750 ${RED5_HOME}/red5.sh
dosym ${RED5_HOME}/webapps /var/lib/red5-webapps
}
Last update: 20-10-2009 11:32
Written by Pham Ngoc Hai, on 21-06-2009 17:40
Last update: 21-06-2009 17:46
Written by Pham Ngoc Hai, on 09-11-2008 14:50
It has been some time since the first release of lrg, we just reached 0.2.0 and I think that's a good milestone for an ebuild. So here it is:
(This is available in my overlay as well)
==========================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit python distutils
DESCRIPTION="Python GUI tool for rapidshare premium member to download rapidshare links."
HOMEPAGE="http://www.phamngochai.net/linux-rapidshare-grabber/"
SRC_URI="mirror://sourceforge/lrg/${P}.tar.gz"
LICENSE="GPL"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="virtual/python
dev-python/wxpython
dev-python/pycurl"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
}
src_compile() {
cd "${PN}"
distutils_src_compile
}
src_install() {
cd "${PN}"
distutils_src_install
}
Last update: 09-11-2008 14:51
Written by Pham Ngoc Hai, on 09-11-2008 13:32
Change log:
- Remove add result box
- Add info box in the main window
- Use DNS cache by default
Link to download:
https://sourceforge.net/project/platformdownload.php?group_id=235420
Last update: 09-11-2008 13:32
Written by Pham Ngoc Hai, on 26-10-2008 19:45
After a vacation week, I fixed a fews bugs and I think it's time to release 0.1.5
The change log:
- Fixed abort all bug
- Added addURL results box
- Ctrl+A -> select ALL, Del -> delete
Here comes the link to the sourceforge download page:
http://sourceforge.net/project/showfiles.php?group_id=235420
Last update: 26-10-2008 19:48
<< Start < Prev 1 2 3 Next > End >> Results 1 - 15 of 38