Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1763 - ypserv 1.3.12 missing a makefile under ${S}/ypmake
Summary: ypserv 1.3.12 missing a makefile under ${S}/ypmake
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Seemant Kulleen (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-14 04:58 UTC by Terje Kvernes
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Terje Kvernes 2002-04-14 04:58:11 UTC
ypserv now dies as follows:

./sedscript < ./mknetid.8.in > mknetid.8
rm -f rpc.yppasswdd.8
./sedscript < ./rpc.yppasswdd.8.in > rpc.yppasswdd.8
rm -f pwupdate.8
./sedscript < ./pwupdate.8.in > pwupdate.8
rm -f makedbm.8
./sedscript < ./makedbm.8.in > makedbm.8
make: *** No targets specified and no makefile found.  Stop.

!!! ERROR: The ebuild did not complete successfully.
!!! Function src_compile, Line 24, Exitcode 2
!!! (no error message)

!!! emerge aborting on  /usr/portage/net-nds/ypserv/ypserv-1.3.12.ebuild .

this happens here:
src_compile() {

    local myconf
    use tcpd && myconf="${myconf} --enable-tcp-wrapper"

    ./configure \
        --host=${CHOST} \
        --prefix=/usr \
        --sysconfdir=/etc \
        --localstatedir=/var \
        --mandir=/usr/share/man \
        --enable-yppasswd \
        ${myconf} || die

    make || die

    cd ${S}/ypmake
#   sed -f defs.sed Makefile.in > Makefile

# this is where it dies. there is no Makefile in ${S}/ypmake.  is this
# something the above configure should have created? 

    make || die
}
Comment 1 Seemant Kulleen (RETIRED) gentoo-dev 2002-04-14 05:25:35 UTC
blah, I checked in the wrong copy.  It should work now.
Comment 2 Terje Kvernes 2002-04-14 10:00:28 UTC
yep, works, thanks.