diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2009-06-12 00:13:59 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2009-06-12 00:13:59 +0300 |
commit | d987eb25aa5b31d49ab3e9378dbc250a33535a5d (patch) | |
tree | 279bc2a2544933e395f2c302c0ece7b3b171de6c | |
parent | 1c499499a13d8967ffe79f09b935940d739fae85 (diff) |
modified: app-emulation/wine/wine-9999.ebuild
modified: www-apps/trac/trac-9999.ebuild
-rw-r--r-- | app-emulation/wine/wine-9999.ebuild | 18 | ||||
-rw-r--r-- | www-apps/trac/trac-9999.ebuild | 13 |
2 files changed, 21 insertions, 10 deletions
diff --git a/app-emulation/wine/wine-9999.ebuild b/app-emulation/wine/wine-9999.ebuild index 6252265..40bc815 100644 --- a/app-emulation/wine/wine-9999.ebuild +++ b/app-emulation/wine/wine-9999.ebuild @@ -6,16 +6,20 @@ EAPI="2" inherit multilib -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://source.winehq.org/git/wine.git" + +IUSE="alsa cups dbus esd +gecko gnutls +hacks hal jack jpeg lcms ldap nas ncurses +opengl oss png samba scanner ssl +X xcomposite xinerama xml" + +if use hacks ; then + EGIT_REPO_URI="git://repo.or.cz/wine/hacks.git" +# EGIT_BRANCH="hacks" inherit git SRC_URI="" KEYWORDS="" else - MY_P="${PN}-${PV/_/-}" - SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" - KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd" - S=${WORKDIR}/${MY_P} + EGIT_REPO_URI="git://source.winehq.org/git/wine.git" + inherit git + SRC_URI="" + KEYWORDS="" fi GV="0.9.1" @@ -26,7 +30,7 @@ SRC_URI="${SRC_URI} LICENSE="LGPL-2.1" SLOT="0" -IUSE="alsa cups dbus esd +gecko gnutls hal jack jpeg lcms ldap nas ncurses +opengl oss png samba scanner ssl +X xcomposite xinerama xml" + RESTRICT="test" #72375 RDEPEND=">=media-libs/freetype-2.0.0 diff --git a/www-apps/trac/trac-9999.ebuild b/www-apps/trac/trac-9999.ebuild index 3f1b942..0a3cda4 100644 --- a/www-apps/trac/trac-9999.ebuild +++ b/www-apps/trac/trac-9999.ebuild @@ -13,15 +13,22 @@ HOMEPAGE="http://trac.edgewall.com/" LICENSE="trac" SRC_URI="" -ESVN_REPO_URI="http://svn.edgewall.org/repos/trac/trunk" +IUSE="cgi fastcgi mysql multirepos postgres sqlite subversion" + +if use multirepos ; then + ESVN_REPO_URI="http://svn.edgewall.com/repos/trac/sandbox/multirepos" + ESVN_PROJECT="${PN/-multirepos-svn}" +else + ESVN_REPO_URI="http://svn.edgewall.org/repos/trac/trunk" + ESVN_PROJECT="${PN/-svn}" +fi ESVN_STORE_DIR="${DISTDIR}/svn-src" -ESVN_PROJECT="${PN/-svn}" #ESVN_BOOTSTRAP="./reconf" S="${WORKDIR}/${P/_/}" -IUSE="cgi fastcgi mysql postgres sqlite subversion" + KEYWORDS="~x86 ~amd64" |