forked from hasufell/hasufell-repository
cunit: support multilib
This commit is contained in:
parent
9567cdf319
commit
29a5da2bc4
@ -1,36 +1,41 @@
|
|||||||
# Copyright 2014 Julian Ospald <hasufell@posteo.de>
|
# Copyright 2014 Julian Ospald <hasufell@posteo.de>
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
MY_P=CUnit-${PV/_p/-}
|
||||||
|
|
||||||
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.13 1.12 1.11 1.10 ] ]
|
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.13 1.12 1.11 1.10 ] ]
|
||||||
|
# out of source build broken
|
||||||
|
require easy-multibuild [ multiunpack=true work=${MY_P} ]
|
||||||
|
|
||||||
MY_PN='CUnit'
|
SUMMARY="C Unit Test Framework"
|
||||||
MY_PV="${PV/_p/-}"
|
|
||||||
MY_P="${MY_PN}-${MY_PV}"
|
|
||||||
|
|
||||||
SUMMARY="CUnit - C Unit Test Framework"
|
|
||||||
DOWNLOADS="mirror://sourceforge/cunit/${MY_P}-src.tar.bz2"
|
DOWNLOADS="mirror://sourceforge/cunit/${MY_P}-src.tar.bz2"
|
||||||
HOMEPAGE="http://cunit.sourceforge.net"
|
HOMEPAGE="http://cunit.sourceforge.net"
|
||||||
|
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
LICENCES="LGPL-2"
|
LICENCES="LGPL-2"
|
||||||
PLATFORMS="~amd64 ~x86"
|
PLATFORMS="~amd64 ~x86"
|
||||||
MYOPTIONS="ncurses"
|
MYOPTIONS="
|
||||||
|
ncurses
|
||||||
|
multibuild_c: ( 32 64 )
|
||||||
|
"
|
||||||
|
|
||||||
DEPENDENCIES="
|
DEPENDENCIES="
|
||||||
build+run:
|
build+run:
|
||||||
ncurses? ( sys-libs/ncurses )
|
ncurses? ( sys-libs/ncurses[multibuild_c:*(-)?] )
|
||||||
"
|
"
|
||||||
|
|
||||||
WORK=${WORKBASE}/${MY_P}
|
|
||||||
|
|
||||||
DEFAULT_SRC_CONFIGURE_PARAMS=( --disable-static )
|
DEFAULT_SRC_CONFIGURE_PARAMS=( --disable-static )
|
||||||
DEFAULT_SRC_CONFIGURE_OPTION_ENABLES=(
|
DEFAULT_SRC_CONFIGURE_OPTION_ENABLES=(
|
||||||
'ncurses curses'
|
'ncurses curses'
|
||||||
)
|
)
|
||||||
|
|
||||||
src_prepare() {
|
prepare_one_multibuild() {
|
||||||
edo sed -e "/^docdir/d" -i doc/Makefile.am
|
# fix docdir messup
|
||||||
edo sed -e '/^dochdrdir/{s:$(prefix)/doc/@PACKAGE@:$(docdir):}' -i doc/headers/Makefile.am
|
edo sed -e "/^docdir/d" -i doc/Makefile.am
|
||||||
edo sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.in
|
edo sed -e '/^dochdrdir/{s:$(prefix)/doc/@PACKAGE@:$(docdir):}' -i doc/headers/Makefile.am
|
||||||
eautoreconf
|
|
||||||
|
edo sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.in
|
||||||
|
|
||||||
|
autotools_src_prepare
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user