public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] Apache Package
@ 2001-05-23 16:10 Kevin Radcliffe
  2001-05-24 14:14 ` Achim Gottinger
  0 siblings, 1 reply; 8+ messages in thread
From: Kevin Radcliffe @ 2001-05-23 16:10 UTC (permalink / raw
  To: gentoo-dev

Dev,

	You may have already received a report of this, but I installed th
default apache package with ebuild and the command:

apachectl stop 

does not work because it cannot find the .pid file. The defaults set have
the pid in /var/run

but apachectl sees it somewhere else. on my system, this was able to be
fixed by editing /sbin/apachectl a few lines from the top.

If this has already been corrected, I apologize for the report.

Thanks

-Kevin Radcliffe




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-dev] Apache Package
  2001-05-23 16:10 [gentoo-dev] Apache Package Kevin Radcliffe
@ 2001-05-24 14:14 ` Achim Gottinger
  2001-06-09 18:21   ` [gentoo-dev] two new ebuild scripts Alexander Paersch
  0 siblings, 1 reply; 8+ messages in thread
From: Achim Gottinger @ 2001-05-24 14:14 UTC (permalink / raw
  To: gentoo-dev

Kevin Radcliffe wrote:
> 
> Dev,
> 
>         You may have already received a report of this, but I installed th
> default apache package with ebuild and the command:
> 
> apachectl stop
> 
> does not work because it cannot find the .pid file. The defaults set have
> the pid in /var/run
> 
> but apachectl sees it somewhere else. on my system, this was able to be
> fixed by editing /sbin/apachectl a few lines from the top.
> 
> If this has already been corrected, I apologize for the report.
> 
Thank you for the report,

I added an fix for /sbin/apachectl to the new apache-ssl package.

bye achim~

> Thanks
> 
> -Kevin Radcliffe
> 
> _______________________________________________
> gentoo-dev mailing list
> gentoo-dev@gentoo.org
> http://www.gentoo.org/mailman/listinfo/gentoo-dev



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-dev] two new ebuild scripts
  2001-05-24 14:14 ` Achim Gottinger
@ 2001-06-09 18:21   ` Alexander Paersch
  2001-06-09 19:02     ` Mikael Hallendal
  2001-06-10  9:18     ` Daniel Robbins
  0 siblings, 2 replies; 8+ messages in thread
From: Alexander Paersch @ 2001-06-09 18:21 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 620 bytes --]

Hi,

I have finaly manged to build two ebuild scripts on my own.
These are my first, please correct them if they contain errors.

The first one is gtktalog a cd manager program. I put it in app-misc because 
I dont't know which directory fits best.

The second is aria a download manager. There was a problem with the name, the 
programer called his recent release aria-0.10.1test3, but this is not 
allowed. I renamed it to aria-0.10.1_pre3. The directory in the archiv is 
called ...test3, too. I repacked it and uploaded it to my webspace. Is there 
a better way to deal with such packages?

Thanx,

Alexander Paersch

[-- Attachment #2: gtktalog-0.99.0.ebuild --]
[-- Type: text/plain, Size: 763 bytes --]

# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Alexander Paersch <genki@codeguru.li>
# /home/cvsroot/gentoo-x86/app-misc/gtktalog/gtktalog-0.99.0.ebuild,v 1.2 2001/02/15 18:17:31 achim Exp

#P=
A=gtktalog-0.99.0.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="cd-rom archiver"
SRC_URI="ftp://gtktalog.sourceforge.net/pub/gtktalog/gtktalog/tgz/${A}"
HOMEPAGE="http://gtktalog.sourceforge.net/index.php"

DEPEND="virtual/glibc
               >=x11-libs/gtk+-1.2.0
               >=gnome-base/gnome-libs-1.0.0
               >=sys-libs/zlib-1.1.3"

src_compile() {

    try ./configure --prefix=/usr --host=${CHOST}
    try make

}

src_install () {

    try make DESTDIR=${D} install

}


[-- Attachment #3: aria-0.10.1_pre3.ebuild --]
[-- Type: text/plain, Size: 687 bytes --]

# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Alexander Paersch <genki@codeguru.li>
# /home/cvsroot/gentoo-x86/net-www/aria/aria-0.10.1_pre3.ebuild,v 1.2 2001/02/15 18:17:31 achim Exp

#P=
A=aria-0.10.1_pre3.tar.bz2
S=${WORKDIR}/${P}
DESCRIPTION="download manager"
SRC_URI="http://codeguru.li/gentoo/${A}"
HOMEPAGE="http://aria.rednoah.com/linux_e.html"

DEPEND="virtual/glibc
               >=x11-libs/gtk+-1.2.0
               >=sys-devel/gettext-0.10.35"

src_compile() {

    try ./configure --prefix=/usr --host=${CHOST}
    try make

}

src_install () {

    try make DESTDIR=${D} install

}


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-dev] two new ebuild scripts
  2001-06-09 18:21   ` [gentoo-dev] two new ebuild scripts Alexander Paersch
@ 2001-06-09 19:02     ` Mikael Hallendal
  2001-06-10  9:21       ` Daniel Robbins
  2001-06-10  9:18     ` Daniel Robbins
  1 sibling, 1 reply; 8+ messages in thread
From: Mikael Hallendal @ 2001-06-09 19:02 UTC (permalink / raw
  To: gentoo-dev

Alexander Paersch <genki@codeguru.li> writes:

> Hi,
> 
> I have finaly manged to build two ebuild scripts on my own.  These are
> my first, please correct them if they contain errors.
> 
> The first one is gtktalog a cd manager program. I put it in app-misc
> because I dont't know which directory fits best.

Hehe, I made gtktalog today too :) I sent mine to Achim this afternoon,
why haven't you enabled any of the plugins? like mp3-info and such?

Regards,
Mikael Hallendal

-- 
Mikael Hallendal                micke@codefactory.se
CodeFactory AB                  http://www.codefactory.se/
Office: +46 (0)8 587 583 05     Cell: +46 (0)709 718 918



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-dev] two new ebuild scripts
  2001-06-09 18:21   ` [gentoo-dev] two new ebuild scripts Alexander Paersch
  2001-06-09 19:02     ` Mikael Hallendal
@ 2001-06-10  9:18     ` Daniel Robbins
  1 sibling, 0 replies; 8+ messages in thread
From: Daniel Robbins @ 2001-06-10  9:18 UTC (permalink / raw
  To: gentoo-dev

On Sun, Jun 10, 2001 at 12:39:56AM +0200, Alexander Paersch wrote:

> The second is aria a download manager. There was a problem with the name, the 
> programer called his recent release aria-0.10.1test3, but this is not 
> allowed. I renamed it to aria-0.10.1_pre3. The directory in the archiv is 
> called ...test3, too. I repacked it and uploaded it to my webspace. Is there 
> a better way to deal with such packages?

Thanks for the packages; yes, there is an easier way to deal with this problem.
Portage makes it easy to override the default values for $S:

S=${WORKDIR}/aria-0.10.1test3

...and, you would also specify the real archive name in $SRC_URI:

SRC_URI="http://www.foo.bar.com/aria-0.10.1test3.tar.gz"

This way, the ebuild can be named "aria-0.10.1_pre3.ebuild" and everything
will work.  BTW, naming the ebuild in the way you did is the right approach. :)

Best Regards,

-- 
Daniel Robbins					<drobbins@gentoo.org>
President/CEO					http://www.gentoo.org 
Gentoo Technologies, Inc.			



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-dev] two new ebuild scripts
  2001-06-09 19:02     ` Mikael Hallendal
@ 2001-06-10  9:21       ` Daniel Robbins
  2001-06-10 11:29         ` Mikael Hallendal
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Robbins @ 2001-06-10  9:21 UTC (permalink / raw
  To: gentoo-dev

On Sun, Jun 10, 2001 at 03:00:13AM +0200, Mikael Hallendal wrote:
> Alexander Paersch <genki@codeguru.li> writes:

> > The first one is gtktalog a cd manager program. I put it in app-misc
> > because I dont't know which directory fits best.

> Hehe, I made gtktalog today too :) I sent mine to Achim this afternoon,
> why haven't you enabled any of the plugins? like mp3-info and such?

Probably because he just started making ebuilds and is getting the hang of
it.  Please try to be more supportive.

Best Regards,

-- 
Daniel Robbins					<drobbins@gentoo.org>
President/CEO					http://www.gentoo.org 
Gentoo Technologies, Inc.			



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-dev] two new ebuild scripts
  2001-06-10  9:21       ` Daniel Robbins
@ 2001-06-10 11:29         ` Mikael Hallendal
  2001-06-10 14:07           ` Achim Gottinger
  0 siblings, 1 reply; 8+ messages in thread
From: Mikael Hallendal @ 2001-06-10 11:29 UTC (permalink / raw
  To: gentoo-dev

Daniel Robbins <drobbins@gentoo.org> writes:

> On Sun, Jun 10, 2001 at 03:00:13AM +0200, Mikael Hallendal wrote:
> > Alexander Paersch <genki@codeguru.li> writes:
> 
> > > The first one is gtktalog a cd manager program. I put it in
> > >app-misc because I dont't know which directory fits best.
> 
> > Hehe, I made gtktalog today too :) I sent mine to Achim this
> >afternoon, why haven't you enabled any of the plugins? like mp3-info
> >and such?
> 
> Probably because he just started making ebuilds and is getting the
> hang of it.  Please try to be more supportive.

That wasn't meant as a complaint, sorry if it sounded like that. It
was meant as a question from a user who hasn't been using GTKtalog. I
wanted to start using GTKtalog and therefor I fixed an ebuild for it
and found all kinds of configure-flags for different plugins. I don't
know if they usually (in other distributions) is enabled and hence the
question. So, it was not directed towards how the ebuild was done,
rather if there was a special reason (like they are beeing unstable or
something) that made him not use them.

Again, sorry if this sounded like a complaint.

Regards,
Mikael Hallendal



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-dev] two new ebuild scripts
  2001-06-10 11:29         ` Mikael Hallendal
@ 2001-06-10 14:07           ` Achim Gottinger
  0 siblings, 0 replies; 8+ messages in thread
From: Achim Gottinger @ 2001-06-10 14:07 UTC (permalink / raw
  To: gentoo-dev

Mikael Hallendal wrote:
> 
> Daniel Robbins <drobbins@gentoo.org> writes:
> 
> > On Sun, Jun 10, 2001 at 03:00:13AM +0200, Mikael Hallendal wrote:
> > > Alexander Paersch <genki@codeguru.li> writes:
> >
> > > > The first one is gtktalog a cd manager program. I put it in
> > > >app-misc because I dont't know which directory fits best.
> >
> > > Hehe, I made gtktalog today too :) I sent mine to Achim this
> > >afternoon, why haven't you enabled any of the plugins? like mp3-info
> > >and such?
> >
> > Probably because he just started making ebuilds and is getting the
> > hang of it.  Please try to be more supportive.
> 
> That wasn't meant as a complaint, sorry if it sounded like that. It
> was meant as a question from a user who hasn't been using GTKtalog. I
> wanted to start using GTKtalog and therefor I fixed an ebuild for it
> and found all kinds of configure-flags for different plugins. I don't
> know if they usually (in other distributions) is enabled and hence the
> question. So, it was not directed towards how the ebuild was done,
> rather if there was a special reason (like they are beeing unstable or
> something) that made him not use them.

It did not sound offensive to me too. I normaly try to add as much
features 
as possible/rational and I try to make em optional via USE if p/r.

bye achim~

> 
> Again, sorry if this sounded like a complaint.
> 
> Regards,
> Mikael Hallendal
> 
> _______________________________________________
> gentoo-dev mailing list
> gentoo-dev@cvs.gentoo.org
> http://cvs.gentoo.org/mailman/listinfo/gentoo-dev



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2001-06-10 20:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-23 16:10 [gentoo-dev] Apache Package Kevin Radcliffe
2001-05-24 14:14 ` Achim Gottinger
2001-06-09 18:21   ` [gentoo-dev] two new ebuild scripts Alexander Paersch
2001-06-09 19:02     ` Mikael Hallendal
2001-06-10  9:21       ` Daniel Robbins
2001-06-10 11:29         ` Mikael Hallendal
2001-06-10 14:07           ` Achim Gottinger
2001-06-10  9:18     ` Daniel Robbins

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox