|
Lines 16-22
SRC_URI="mirror://apache/apr/${P}.tar.bz2"
Link Here
|
| 16 |
LICENSE="Apache-2.0" |
16 |
LICENSE="Apache-2.0" |
| 17 |
SLOT="1" |
17 |
SLOT="1" |
| 18 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" |
18 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" |
| 19 |
IUSE="berkdb doc gdbm ldap libressl mysql nss odbc openssl postgres sqlite static-libs" |
19 |
IUSE="berkdb doc gdbm ldap libressl mysql nss odbc ssl postgres sqlite static-libs" |
| 20 |
#RESTRICT="test" |
20 |
#RESTRICT="test" |
| 21 |
|
21 |
|
| 22 |
RDEPEND=" |
22 |
RDEPEND=" |
|
Lines 31-37
RDEPEND="
Link Here
|
| 31 |
) ) |
31 |
) ) |
| 32 |
nss? ( dev-libs/nss ) |
32 |
nss? ( dev-libs/nss ) |
| 33 |
odbc? ( dev-db/unixODBC ) |
33 |
odbc? ( dev-db/unixODBC ) |
| 34 |
openssl? ( |
34 |
ssl? ( |
| 35 |
!libressl? ( dev-libs/openssl:0= ) |
35 |
!libressl? ( dev-libs/openssl:0= ) |
| 36 |
libressl? ( dev-libs/libressl ) |
36 |
libressl? ( dev-libs/libressl ) |
| 37 |
) |
37 |
) |
|
Lines 78-84
src_configure() {
Link Here
|
| 78 |
$(use_with mysql) |
78 |
$(use_with mysql) |
| 79 |
$(use_with nss) |
79 |
$(use_with nss) |
| 80 |
$(use_with odbc) |
80 |
$(use_with odbc) |
| 81 |
$(use_with openssl) |
81 |
$(use_with ssl) |
| 82 |
$(use_with postgres pgsql) |
82 |
$(use_with postgres pgsql) |
| 83 |
$(use_with sqlite sqlite3) |
83 |
$(use_with sqlite sqlite3) |
| 84 |
) |
84 |
) |
|
Lines 101-107
src_configure() {
Link Here
|
| 101 |
myconf+=( --without-berkeley-db ) |
101 |
myconf+=( --without-berkeley-db ) |
| 102 |
fi |
102 |
fi |
| 103 |
|
103 |
|
| 104 |
if use nss || use openssl ; then |
104 |
if use nss || use ssl ; then |
| 105 |
myconf+=( --with-crypto ) # 518708 |
105 |
myconf+=( --with-crypto ) # 518708 |
| 106 |
fi |
106 |
fi |
| 107 |
|
107 |
|