Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 1280 | Differences between
and this patch

Collapse All | Expand All

(-)wine-20020310.ebuild (-4 / +8 lines)
Lines 28-35 Link Here
28
    [ -z $DEBUG ] && myconf="$myconf --disable-trace --disable-debug" 	|| myconf="$myconf --enable-trace --enable-debug"
28
    [ -z $DEBUG ] && myconf="$myconf --disable-trace --disable-debug" 	|| myconf="$myconf --enable-trace --enable-debug"
29
    # there's no configure flag for cups, it's supposed to be autodetected
29
    # there's no configure flag for cups, it's supposed to be autodetected
30
30
31
    ./configure --prefix=/usr --sysconfdir=/etc/wine \
31
    ./configure --prefix=/usr \
32
		--host=${CHOST} --enable-curses ${myconf} || die
32
	--sysconfdir=/etc/wine \
33
	--mandir=/usr/share/man \
34
	--host=${CHOST} \
35
	--enable-curses \
36
	${myconf} || die
33
37
34
    cd ${S}/programs/winetest
38
    cd ${S}/programs/winetest
35
    cp Makefile 1
39
    cp Makefile 1
Lines 44-52 Link Here
44
src_install () {
48
src_install () {
45
    
49
    
46
    cd ${S}
50
    cd ${S}
47
    make prefix=${D}/usr install || die
51
    make prefix=${D}/usr mandir=${D}/usr/share/man install || die
48
    cd ${S}/programs
52
    cd ${S}/programs
49
    make prefix=${D}/usr install || die
53
    make prefix=${D}/usr mandir=${D}/usr/share/man install || die
50
    
54
    
51
    # these .so's are strange. they are from the make in programs/ above,
55
    # these .so's are strange. they are from the make in programs/ above,
52
    # and are for apps built with winelib (windows sources built directly
56
    # and are for apps built with winelib (windows sources built directly

Return to bug 1280